示例#1
0
        public GramsGiven(double gramsGiven, double gfwt, double coefficentFrom,
                          ReactionCompound forCompound) : base(coefficentFrom, forCompound)
        {
            this.gramsGiven = gramsGiven;
            this.gfwt       = gfwt;

            numberGivenParams = 1;
        }
示例#2
0
        public MolarityGiven(double molarity, double liters, double coefficentFrom,
                             ReactionCompound compoundFrom) : base(coefficentFrom, compoundFrom)
        {
            this.molarity = molarity;
            this.liters   = liters;

            numberGivenParams = 2;
        }
示例#3
0
 internal ReactionGiven(double coefficentGiven, ReactionCompound givenForCompound)
 {
     this.givenForCompound = givenForCompound;
     this.coefficentGiven  = coefficentGiven;
 }