Example #1
0
        public TOTAL_VOLUME(string pfsname)
        {
            _pfsHandle = new PFSSection(pfsname);

            VOL_LIMIT = new VOL_LIMIT("VOL_LIMIT");
            _pfsHandle.AddKeyword(VOL_LIMIT._keyword);
            OPERATOR = new OPERATOR("OPERATOR");
            _pfsHandle.AddSection(OPERATOR._pfsHandle);
        }
Example #2
0
    public TOTAL_VOLUME(string pfsname)
    {
      _pfsHandle = new PFSSection(pfsname);

      VOL_LIMIT = new VOL_LIMIT("VOL_LIMIT");
      _pfsHandle.AddKeyword(VOL_LIMIT._keyword);
      OPERATOR = new OPERATOR("OPERATOR" );
      _pfsHandle.AddSection(OPERATOR._pfsHandle);

    }
Example #3
0
    internal TOTAL_VOLUME(PFSSection Section)
    {
      _pfsHandle = Section;

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

      VOL_LIMIT = new VOL_LIMIT(_pfsHandle.GetKeyword("VOL_LIMIT", 1));
    }
Example #4
0
        internal TOTAL_VOLUME(PFSSection Section)
        {
            _pfsHandle = Section;

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

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

            VOL_LIMIT = new VOL_LIMIT(_pfsHandle.GetKeyword("VOL_LIMIT", 1));
        }