Beispiel #1
0
        public START_CRITERION(string pfsname)
        {
            _pfsHandle = new PFSSection(pfsname);

            _pfsHandle.AddKeyword(new PFSKeyword("CRITERION_ID", PFSParameterType.String, ""));

            FRC_INFLOW = new FRC_INFLOW("FRC_INFLOW");
            _pfsHandle.AddSection(FRC_INFLOW._pfsHandle);
        }
    public START_CRITERION(string pfsname)
    {
      _pfsHandle = new PFSSection(pfsname);

      _pfsHandle.AddKeyword(new PFSKeyword("CRITERION_ID", PFSParameterType.String, ""));

      FRC_INFLOW = new FRC_INFLOW("FRC_INFLOW" );
      _pfsHandle.AddSection(FRC_INFLOW._pfsHandle);

    }
    internal START_CRITERION(PFSSection Section)
    {
      _pfsHandle = Section;

      for (int i = 1; i <= Section.GetSectionsNo(); i++)
      {
        PFSSection sub = Section.GetSection(i);
        switch (sub.Name)
        {
        case "FRC_INFLOW":
          FRC_INFLOW = new FRC_INFLOW(sub);
          break;
          default:
            _unMappedSections.Add(sub.Name);
          break;
        }
      }

    }
Beispiel #4
0
        internal START_CRITERION(PFSSection Section)
        {
            _pfsHandle = Section;

            for (int i = 1; i <= Section.GetSectionsNo(); i++)
            {
                PFSSection sub = Section.GetSection(i);
                switch (sub.Name)
                {
                case "FRC_INFLOW":
                    FRC_INFLOW = new FRC_INFLOW(sub);
                    break;

                default:
                    _unMappedSections.Add(sub.Name);
                    break;
                }
            }
        }