public void SetAsStressModel(int StageId, int SpecialId)
        {
            this.StageId   = StageId;
            this.ModelId   = 3;
            this.SpecialId = SpecialId;

            RefLisFileReader       = new LISFileReader();
            RefLisFileReader.param = new LISFileParams(this.StageId, this.ModelId, this.SpecialId);
            this.Name = "Model_" + RefLisFileReader.TowerNameGetter();
        }
        public void SetAsTemperatureModel(int StageId)
        {
            this.StageId   = StageId;
            this.ModelId   = 0;
            this.SpecialId = 0;

            RefLisFileReader       = new LISFileReader();
            RefLisFileReader.param = new LISFileParams(this.StageId, this.ModelId, this.SpecialId);
            this.Name = "Model_" + RefLisFileReader.TowerNameGetter();
            //MessageBox.Show(this.Name);
        }
 /*
  * This function returns the tower model name you will use
  */
 public string TowerModelNameGetter(LISFileReader EnvLisFileReader)
 {
     return(EnvLisFileReader.TowerNameGetter());
 }