|
From: <ka...@us...> - 2010-02-12 04:40:22
|
Revision: 3824
http://ecell.svn.sourceforge.net/ecell/?rev=3824&view=rev
Author: kaizu
Date: 2010-02-12 04:40:14 +0000 (Fri, 12 Feb 2010)
Log Message:
-----------
Adding the logistic map model
Modified Paths:
--------------
ecell3/branches/kaizu/ecell-3.1/doc/samples/Makefile.am
Added Paths:
-----------
ecell3/branches/kaizu/ecell-3.1/doc/samples/logistic/
ecell3/branches/kaizu/ecell-3.1/doc/samples/logistic/logistic.em
Modified: ecell3/branches/kaizu/ecell-3.1/doc/samples/Makefile.am
===================================================================
--- ecell3/branches/kaizu/ecell-3.1/doc/samples/Makefile.am 2010-02-11 09:45:52 UTC (rev 3823)
+++ ecell3/branches/kaizu/ecell-3.1/doc/samples/Makefile.am 2010-02-12 04:40:14 UTC (rev 3824)
@@ -15,6 +15,7 @@
session_manager \
boolean \
simple \
+ logistic \
tauleap
EXTRA_DIST = $(SAMPLES)
Added: ecell3/branches/kaizu/ecell-3.1/doc/samples/logistic/logistic.em
===================================================================
--- ecell3/branches/kaizu/ecell-3.1/doc/samples/logistic/logistic.em (rev 0)
+++ ecell3/branches/kaizu/ecell-3.1/doc/samples/logistic/logistic.em 2010-02-12 04:40:14 UTC (rev 3824)
@@ -0,0 +1,19 @@
+Stepper DiscreteTimeStepper( DTS01 )
+{
+ StepInterval 1.0;
+}
+
+System System( / )
+{
+ StepperID DTS01;
+
+ Variable Variable( X ) { Value 0.5; }
+# Variable Variable( X ) { Value 0.0; }
+
+ Process ExpressionAssignmentProcess( R )
+ {
+ a 0.0;
+ Expression "a * X.Value * (1.0 - X.Value)";
+ VariableReferenceList [X :.:X +1];
+ }
+}
Property changes on: ecell3/branches/kaizu/ecell-3.1/doc/samples/logistic/logistic.em
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: svn:eol-style
+ native
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|