Exemple #1
0
        public void run_equipment(ref float a, ref float b, ref float c, ref bool d)
        {
            HVAC_Equipment equipment_coolWater = new HVAC_Equipment();

            float[] coe_COP_cool_coolWater  = { 0.0018f, -0.289f, 13.211f };
            float[] coe_COP_cool_groundPump = { 0.0038f, -0.4658f, 17.06f };
            float[] coe_COP_cool_airPump    = { -0.0016f, 0.0083f, 4.0685f };
            float[] coe_COP_heat_groundPump = { 0.0022f, 0.0855f, 2.9625f };
            float[] coe_COP_heat_airPump    = { -0.0003f, 0.0506f, 2.968f };
            equipment_coolWater.run_equipment(200, 200, ref a, 1, 33, ref b, 10000, ref c, coe_COP_cool_coolWater, ref d);
        }