Examples of cellDecay()


Examples of vsv.VSVModel.cellDecay()

  {
    VSVModel modelk3 = this.model.copy();
   
    modelk3.cell.setRates(modelk2.cell);
   
    double decay = modelk3.cellDecay(this.t);
   
    modelk3.cell.simpleLinearIntegrate(this.dt / 2, this.t, decay);
   
    modelk3.cell.mature(this.t);
   
View Full Code Here

Examples of vsv.VSVModel.cellDecay()

  {
    VSVModel modelk4 = this.model.copy();
   
    modelk4.cell.setRates(modelk3.cell);
   
    double decay = modelk4.cellDecay(this.t);
   
    modelk4.cell.simpleLinearIntegrate(this.dt, this.t, decay);
   
    modelk4.cell.mature(this.t);
   
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.