Package com.mockturtlesolutions.snifflib.datatypes

Examples of com.mockturtlesolutions.snifflib.datatypes.DblMatrix.plus()


                Species = Numerator.divideBy(Denominator);
                Species = C.times(Species);
               
                if (charge != 0)
                {
                  avoidErr = avoidErr.plus(Species);
                  //uncharged = uncharged.minus(Species);
                }
                IonSpecies.put(label,Species);
             
             
View Full Code Here


        if (((Boolean)this.adjustForMap.get("adjustForBufferExpConc")).booleanValue())
        {
          param = this.mkParameterName(new String[]{"CExpdev",buffername,exp});
          if (this.hasParameter(param))
          {
            thisConc = thisConc.plus(this.getParam(param));
          }
        }
       
        if (((Boolean)this.adjustForMap.get("adjustForBufferExpSSConc")).booleanValue())
        {
View Full Code Here

        if (((Boolean)this.adjustForMap.get("adjustForBufferExpSSConc")).booleanValue())
        {
          param = this.mkParameterName(new String[]{"CExpSSdev",buffername,exp,ssid});
          if (this.hasParameter(param))
          {
            thisConc = thisConc.plus(this.getParam(param));
          }
        }
        //thisConc.show("This concentration");
        RhsSol.add(this.transientStorage,thisConc);
       
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.