Exemplo n.º 1
0
 }                                                                      // Погодные условия
 public FlightSoundCalculationInputData(
     RocketBallistics RocketBallistics,
     VehicleBallistics VehicleBallistics,
     FlowParameters RocketFlowParameters,
     FlowParameters VehicleFlowParameters,
     List <WeatherParameters> WeatherParameters) : this()
 {
     this.RocketBallistics      = RocketBallistics;
     this.VehicleBallistics     = VehicleBallistics;
     this.RocketFlowParameters  = RocketFlowParameters;
     this.VehicleFlowParameters = VehicleFlowParameters;
     this.WeatherParameters     = WeatherParameters;
 }
Exemplo n.º 2
0
 public SaveFlightNoiseInputDataEventArgs(
     string FileName,
     RocketBallistics RocketBallistics,
     VehicleBallistics VehicleBallistics,
     FlowParameters RocketFlowParameters,
     FlowParameters VehicleFlowParameters,
     List <WeatherParameters> WeatherParameters,
     Dictionary <double, Color> SoundLevels,
     RadiusInterval RadiusInterval,
     FrequencyBand FrequencyBand)
 {
     this.FileName              = FileName;
     this.RocketBallistics      = RocketBallistics;
     this.VehicleBallistics     = VehicleBallistics;
     this.RocketFlowParameters  = RocketFlowParameters;
     this.VehicleFlowParameters = VehicleFlowParameters;
     this.WeatherParameters     = WeatherParameters;
     this.SoundLevels           = SoundLevels;
     this.RadiusInterval        = RadiusInterval;
     this.FrequencyBand         = FrequencyBand;
 }