Giter Site home page Giter Site logo

institutefordiseasemodeling / idm-cms Goto Github PK

View Code? Open in Web Editor NEW
6.0 22.0 8.0 87.35 MB

IDM compartmental modeling software (CMS)

Home Page: https://docs.idmod.org/projects/cms/en/latest/

License: Other

C++ 4.95% C 0.49% C# 48.58% CSS 0.04% Scheme 35.70% Batchfile 0.07% SaltStack 0.15% JavaScript 0.02% Lex 0.10% Yacc 0.15% NSIS 0.09% MATLAB 8.70% Python 0.62% TeX 0.29% Gnuplot 0.04% R 0.03%
stochastic simulation mse idm cms

idm-cms's Introduction

IDM Compartmental Modeling Software

This software has the following features:

  • Multiple solvers
  • Multiple output formats
  • Simple JSON configuration
  • Text based model specification

Here is a sample configuration: ๐Ÿ‘

{
    "duration" : 3650,
    "runs" : 1,
    "samples" : 3650,
    "solver" : "R",
    "output" : {
        "headers" : true
    },
    "tau-leaping" : {
        "epsilon" : 0.01
    },
    "r-leaping" : {}
}

Here is a sample model file:

; simplemodel

(import (rnrs) (emodl cmslib))

(start-model "seir.emodl")

(species S 990)
(species E)
(species I 10)
(species R)

(observe susceptible S)
(observe exposed     E)
(observe infectious  I)
(observe recovered   R)

(param Ki 0.0005)
(param Kl 0.2)
(param Kr (/ 1 7))
(param Kw (/ 1 135))

(reaction exposure   (S I) (E I) (* Ki S I))
(reaction infection  (E)   (I)   (* Kl E))
(reaction recovery   (I)   (R)   (* Kr I))
(reaction waning     (R)   (S)   (* Kw R))

(end-model)

You can find additional documentation here:

https://docs.idmod.org/projects/cms/en/latest/

idm-cms's People

Contributors

bbayati-idm avatar clorton avatar joshlproctor avatar jschripsema-idm avatar minroh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

idm-cms's Issues

ODE solver(s) for deterministic execution

Move docs build/hosting to Read the Docs

  • Add RTD yaml config file, remove Tipue search and beautifulsoup, remove internal conditionalization tag and make commands

  • Configure and test the RTD build in a private fork

  • Move to IDM repo

  • Configure subdomain and proxy from idmod.org

  • Decide which prior versions of docs to build

  • Push RTD docs public

  • Add redirects from gh-pages

  • Add redirects from idmod.org

Linux version?

Hi,

Are there any plans to release a Linux version of this?

Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.