Skip to content

Commit

Permalink
fix: adjust parameters air conditioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Revyn112 committed Jun 23, 2024
1 parent 06614da commit 53e5cc4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions hdw-a339x/src/wasm/systems/a320_systems/src/air_conditioning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -919,12 +919,12 @@ impl SimulationElement for PressurizationSystemInterfaceUnit {
struct A320PressurizationConstants;

impl PressurizationConstants for A320PressurizationConstants {
// Volume data from A320 AIRCRAFT CHARACTERISTICS - AIRPORT AND MAINTENANCE PLANNING
const CABIN_ZONE_VOLUME_CUBIC_METER: f64 = 139.; // m3
const COCKPIT_VOLUME_CUBIC_METER: f64 = 9.; // m3
const FWD_CARGO_ZONE_VOLUME_CUBIC_METER: f64 = 0.; // m3 Not used in A320
const BULK_CARGO_ZONE_VOLUME_CUBIC_METER: f64 = 0.; // m3 Not used in A320
const PRESSURIZED_FUSELAGE_VOLUME_CUBIC_METER: f64 = 330.; // m3
// Volume data from A330 AIRCRAFT CHARACTERISTICS - AIRPORT AND MAINTENANCE PLANNING
const CABIN_ZONE_VOLUME_CUBIC_METER: f64 = 372.; // m3
const COCKPIT_VOLUME_CUBIC_METER: f64 = 12.; // m3
const FWD_CARGO_ZONE_VOLUME_CUBIC_METER: f64 = 0.; // m3 Not used in A330
const BULK_CARGO_ZONE_VOLUME_CUBIC_METER: f64 = 0.; // m3 Not used in A330
const PRESSURIZED_FUSELAGE_VOLUME_CUBIC_METER: f64 = 1056.; // m3
const CABIN_LEAKAGE_AREA: f64 = 0.0003; // m2
const OUTFLOW_VALVE_SIZE: f64 = 0.05; // m2
const SAFETY_VALVE_SIZE: f64 = 0.02; // m2
Expand Down

0 comments on commit 53e5cc4

Please sign in to comment.