Ejemplo n.º 1
0
        //---------------------------------------------------------------------

        public FuelType()
        {
            this.baseFuel              = BaseFuelType.NoFuel;
            this.surfaceFuel           = SurfaceFuelType.NoFuel;
            this.initiationProbability = 0.0;
            this.a     = 0;
            this.b     = 0.0;
            this.c     = 0.0;
            this.q     = 0.0;
            this.bui   = 0;
            this.maxBE = 0.0;
            this.cbh   = 0;
        }
        //---------------------------------------------------------------------

        public FuelType()
        {
            this.baseFuel = BaseFuelType.NoFuel;
            this.surfaceFuel = SurfaceFuelType.NoFuel;
            this.initiationProbability = 0.0;
            this.a = 0;
            this.b = 0.0;
            this.c = 0.0;
            this.q = 0.0;
            this.bui = 0;
            this.maxBE = 0.0;
            this.cbh = 0;
        }
Ejemplo n.º 3
0
        //---------------------------------------------------------------------

        public FuelType(//FuelTypeCode name,
                            int fuelIndex,
                            BaseFuelType baseFuel,
                            int minAge,
                            int maxAge,
                          int[]  multipliers)
        {
            //this.name = name;
            this.fuelIndex = fuelIndex;
            this.baseFuel = baseFuel;
            this.minAge = minAge;
            this.maxAge = maxAge;
            this.multipliers = multipliers;
        }