Package vsv

Examples of vsv.VSVModel.initialize()


    Recorder.setHostDirectory("/Users/jaywarrick/Desktop/JavaModelOutputs");
    // Recorder.setHostDirectory("C:\\Users\\ctimm\\Desktop\\JavaModelOutputs");
   
    TestSim sim = new TestSim();
    VSVModel model = new VSVModel(); // initializes the model (cell, virus and reactions)
    model.initialize();
    sim.setParams(model, 6 * 60 * 60, 1.0, 15 * 60); // sets the simulation parameters
    sim.call();
   
  }
 
View Full Code Here


   
    for (DimensionMap params : this.paramTable.getMapIterator())
    {
      // Create the VSVModel to simulate and set the parameters
      VSVModel model = new VSVModel();
      model.initialize();
      model.setParams(params);
     
      // Set up the simulation;
      TestSim sim = new TestSim();
      sim.setParams(model, this.simDuration * 60 * 60, this.dt, this.recorderInterval * 60);
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.