Example #1
0
 public Mole(Mole newMole)
 {
     this.Set(newMole);
 }
Example #2
0
 public NitrousOxide(Mole mole)
     : base(mole)
 {
     this.SpecificHeat = 23f;
     this.Type         = Chemistry.GasType.NitrousOxide;
 }
Example #3
0
 public Oxygen(Mole mole)
     : base(mole)
 {
     this.SpecificHeat = 21.1f;
     this.Type         = Chemistry.GasType.Oxygen;
 }
Example #4
0
 public Nitrogen(Mole mole)
     : base(mole)
 {
     this.SpecificHeat = 20.6f;
     this.Type         = Chemistry.GasType.Nitrogen;
 }
Example #5
0
 public CarbonDioxide(Mole mole) : base(mole)
 {
     this.SpecificHeat = 28.2f;
     this.Type         = Chemistry.GasType.CarbonDioxide;
 }
Example #6
0
 public Water(Mole mole)
     : base(mole)
 {
     this.SpecificHeat = 72f;
     this.Type         = Chemistry.GasType.Water;
 }
Example #7
0
 public Volatiles(Mole mole)
     : base(mole)
 {
     this.SpecificHeat = 20.4f;
     this.Type         = Chemistry.GasType.Volatiles;
 }
Example #8
0
 public Chlorine(Mole mole)
     : base(mole)
 {
     this.SpecificHeat = 24.8f;
     this.Type         = Chemistry.GasType.Pollutant;
 }