Changes between Version 11 and Version 12 of WikiStart
- Timestamp:
- Oct 13, 2016, 5:06:08 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v11 v12 49 49 Physics group at Lund University and the Computational Morphodynamics group at the Sainsbury Laboratory, University of Cambridge. Contact: henrik.jonsson@slcu.cam.ac.uk. 50 50 51 Developers (incomplete list): Henrik Jönsson, Patrik Sahlin, Pontus Melke, Pau Formosa-Jordan, Laura Brown, Pawel Krupinski, Behruz Bozorg 52 51 53 = Binaries = 52 54 … … 60 62 61 63 * model file: this file defines the model. Information of its format can be 62 found in the documentation of Organism::readModel() .64 found in the documentation of Organism::readModel() [for tissue it is Tissue::readModel()]. 63 65 64 66 * init file: this file holds the initial variable values. Information of … … 76 78 A common command line execution of the simulator binary is then: 77 79 78 $ORGANISM/bin/simulator example.model example.init example.rk5 > example.data80 simulator example.model example.init example.rk5 > example.data 79 81 80 which generates the system output in the file example.data. 82 which generates the system output in the file example.data. Note that the simulator binary is in the bin directory of the organism (or tissue) main directory. This needs to be in your PATH or you will need to specify the full path to the binary. 81 83 82 84 '''Optimizer''' … … 98 100 = Compilation = 99 101 100 The code can be compiled by using make. A Makefile can be found in the $ORGANISM/srcdirectory (to compile: 'cd src; make' will generate the binaries in the bin directory) . The102 The code can be compiled by using make. A Makefile can be found in the 'src' directory (to compile: 'cd src; make' will generate the binaries in the bin directory) . The 101 103 code is ANSI-compatible and has been tested to compile on Linux (default for the provided Makefile), Mac OS X and 102 104 Windows (using Cygwin) platforms. It is dependent on boost and for plotting OpenGL. … … 104 106 = Documentation = 105 107 106 Documentation is generated via Doxygen (http://www.doxygen.org) and a Makefile is found in the $ORGANISM/docdirectory. 'cd doc; make' will generate a html version in the doc/html directory and the introductory page is doc/html/index.html. PDF documentation can be generated by 'cd doc/latex; make' which generates doc/latex/refman.pdf. Other formats are also available via Doxygen.108 Documentation is generated via Doxygen (http://www.doxygen.org) and a Makefile is found in the 'doc' directory. 'cd doc; make' will generate a html version in the doc/html directory and the introductory page is doc/html/index.html. PDF documentation can be generated by 'cd doc/latex; make' which generates doc/latex/refman.pdf. Other formats are also available via Doxygen. 107 109 108 110 = Download =
