public ItuRViewModel()
 {
     Name = "Model zalecany przez ITU-R";
     PropagationModel = mPropagation;
     SetModelCommand = new SetModelCommand(this);
     ModelAttenuationCharacteristicsCommand = new IturAttenuationCommand(this);
     IsResidential = true;
     IsSettingModelEnabled = true;
 }
 public MultiWallViewModel()
 {
     Name = "Model Wielościenny";
     PropagationModel = mPropagationModel;
     SetModelCommand = new SetModelCommand(this);
     ModelAttenuationCharacteristicsCommand = new MultiWallAttenuationCommand(this);
     ReferenceAttenuation = 60.0;
     PathLossExponent = 2.0;
     IsSettingModelEnabled = true;
 }
 public MultipathViewModel()
 {
     Name = "Model Wielodrogowy";
     PropagationModel = new MultipathPropagationModel();
     SetModelCommand = new SetModelCommand(this);
     Exponent = 2;
     ReferenceSignalStrength = -70;
     StandardDeviation = 1.0;
     IsSettingModelEnabled = true;
 }
 public OneSlopeViewModel()
 {
     Name = "1SM - Model Jednościeżkowy";
     PropagationModel = mPropagationModel;
     SetModelCommand = new SetModelCommand(this);
     ModelAttenuationCharacteristicsCommand = new OneSlopeAttenuationCommand(this);
     IsShadowingIncluded = false;
     ReferenceAttenuation = 60.0;
     PathLossExponent = 2.0;
     StandardDeviation = 1.0;
     IsSettingModelEnabled = true;
 }