예제 #1
0
파일: Givens.cs 프로젝트: JacobFV/Labatron
        public GramsGiven(double gramsGiven, double gfwt, double coefficentFrom,
                          ReactionCompound forCompound) : base(coefficentFrom, forCompound)
        {
            this.gramsGiven = gramsGiven;
            this.gfwt       = gfwt;

            numberGivenParams = 1;
        }
예제 #2
0
파일: Givens.cs 프로젝트: JacobFV/Labatron
        public MolarityGiven(double molarity, double liters, double coefficentFrom,
                             ReactionCompound compoundFrom) : base(coefficentFrom, compoundFrom)
        {
            this.molarity = molarity;
            this.liters   = liters;

            numberGivenParams = 2;
        }
예제 #3
0
파일: Givens.cs 프로젝트: JacobFV/Labatron
 internal ReactionGiven(double coefficentGiven, ReactionCompound givenForCompound)
 {
     this.givenForCompound = givenForCompound;
     this.coefficentGiven  = coefficentGiven;
 }