Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No sanity check when we use 2 _ #423

Open
SergeStinckwich opened this issue Feb 15, 2022 · 0 comments
Open

No sanity check when we use 2 _ #423

SergeStinckwich opened this issue Feb 15, 2022 · 0 comments

Comments

@SergeStinckwich
Copy link
Collaborator

SergeStinckwich commented Feb 15, 2022

When we define a model like:

KModel SEIRS
    attribute: #(status -> S E I R);
    parameters: #(beta lambda gamma mu sigma nu);
    lambda: #(beta*I/N);
    equations: #(
         S:t=mu*N - lamda*S - mu*S + nu*R.
         E:t=lambda*S - sigma*E - mu*E.
         I:t=sigma*E - gamma*I - mu*I.
         R:t=gamma*I - mu*R - nu*R.).

KModel MultiSpecies
    attribute: #(species -> humans birds).

Composition Influenza
    model: 'SEIRS';
    model: 'MultiSpecies'.

Scenario Scr1
    on: 'Influenza';
    mu_species_species: #(0.000365 0.00137);

no sanity check is done on mu_species_species.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant