Serge Stinckwich

Results 124 issues of Serge Stinckwich

We need to be able to represent compartment names (this is already done by the class ``KECompartmentName``) but also be able to represent queries on compartments. Queries should be applied...

@btmanh say: the first difference is that a node of KEContactNetwork is a KEContacNode in which we can track the contacts of an individual the second difference is that with...

Why we name the class KEScaleFreeNetworkTopology like that because this class only generate Barabasi-Albert network that are only one type of ScaleFreeNetwork ? https://en.wikipedia.org/wiki/Scale-free_network

There is not that much differences between ```KETransition``` and ```KEEvent```. Why do we need two classes ?

When you ask a ```KEModel``` its compartiments like : ```model population compartiments```we obtain a dictionary where keys are dictionaries of status, why not keys are not status directly ?

What is the difference between attributes and parameter in the following model ? ```Smalltalk spatialConcern := KEModelPart new. network := KEContactNetwork nodes: 100 topology: { #random. #p->0.02 }. spatialConcern addParameter:...

Why do we distinguish N from other parameters when we define a model ? Example : ```Smalltalk model := KEModel new. model population: (KEPopulation size: 5000). SEIRConcern := KEModelPart new....

Why do we need attributes on ```KEIndividual``` and not instances variables on ```KEIndividual``` ? Why currentStatus and nextStatus are not defined as attributes ?

We have done some work to use Matlab from Kendrick: https://github.com/UMMISCO/kendrick/wiki/Fit-a-Kendrick-model-to-data but we need something that is more integrated in Kendrick. I R, they use ``optim()`` function: https://www.ibm.com/developerworks/library/ba-optimR-john-nash/index.html

The purpose of the 2 methods ``KEModel>>nextCompartment`` and ``KEModel>>nextCompartment`` is not clear. There is apparently a relationship with ``currentCompartment`` and ``currentCompartment:`` There is related discussion in #56