We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
mu_species_species
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When we define a model like:
no sanity check is done on
mu_species_species
.The text was updated successfully, but these errors were encountered: