LCOV - code coverage report
Current view: top level - EnergyPlus - RoomAirModelManager.hh (source / functions) Hit Total Coverage
Test: lcov.output.filtered Lines: 1 4 25.0 %
Date: 2023-01-17 19:17:23 Functions: 2 4 50.0 %

          Line data    Source code
       1             : // EnergyPlus, Copyright (c) 1996-2023, The Board of Trustees of the University of Illinois,
       2             : // The Regents of the University of California, through Lawrence Berkeley National Laboratory
       3             : // (subject to receipt of any required approvals from the U.S. Dept. of Energy), Oak Ridge
       4             : // National Laboratory, managed by UT-Battelle, Alliance for Sustainable Energy, LLC, and other
       5             : // contributors. All rights reserved.
       6             : //
       7             : // NOTICE: This Software was developed under funding from the U.S. Department of Energy and the
       8             : // U.S. Government consequently retains certain rights. As such, the U.S. Government has been
       9             : // granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable,
      10             : // worldwide license in the Software to reproduce, distribute copies to the public, prepare
      11             : // derivative works, and perform publicly and display publicly, and to permit others to do so.
      12             : //
      13             : // Redistribution and use in source and binary forms, with or without modification, are permitted
      14             : // provided that the following conditions are met:
      15             : //
      16             : // (1) Redistributions of source code must retain the above copyright notice, this list of
      17             : //     conditions and the following disclaimer.
      18             : //
      19             : // (2) Redistributions in binary form must reproduce the above copyright notice, this list of
      20             : //     conditions and the following disclaimer in the documentation and/or other materials
      21             : //     provided with the distribution.
      22             : //
      23             : // (3) Neither the name of the University of California, Lawrence Berkeley National Laboratory,
      24             : //     the University of Illinois, U.S. Dept. of Energy nor the names of its contributors may be
      25             : //     used to endorse or promote products derived from this software without specific prior
      26             : //     written permission.
      27             : //
      28             : // (4) Use of EnergyPlus(TM) Name. If Licensee (i) distributes the software in stand-alone form
      29             : //     without changes from the version obtained under this License, or (ii) Licensee makes a
      30             : //     reference solely to the software portion of its product, Licensee must refer to the
      31             : //     software as "EnergyPlus version X" software, where "X" is the version number Licensee
      32             : //     obtained under this License and may not use a different name for the software. Except as
      33             : //     specifically required in this Section (4), Licensee shall not use in a company name, a
      34             : //     product name, in advertising, publicity, or other promotional activities any name, trade
      35             : //     name, trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or confusingly
      36             : //     similar designation, without the U.S. Department of Energy's prior written consent.
      37             : //
      38             : // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
      39             : // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
      40             : // AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
      41             : // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
      42             : // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
      43             : // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
      44             : // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
      45             : // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
      46             : // POSSIBILITY OF SUCH DAMAGE.
      47             : 
      48             : #ifndef RoomAirModelManager_hh_INCLUDED
      49             : #define RoomAirModelManager_hh_INCLUDED
      50             : 
      51             : // EnergyPlus Headers
      52             : #include <EnergyPlus/Data/BaseData.hh>
      53             : #include <EnergyPlus/EnergyPlus.hh>
      54             : 
      55             : namespace EnergyPlus {
      56             : 
      57             : // Forward declarations
      58             : struct EnergyPlusData;
      59             : 
      60             : namespace RoomAirModelManager {
      61             : 
      62             :     void ManageAirModel(EnergyPlusData &state, int const ZoneNum);
      63             : 
      64             :     void GetAirModelDatas(EnergyPlusData &state);
      65             : 
      66             :     void GetUserDefinedPatternData(EnergyPlusData &state, bool &ErrorsFound); // True if errors found during this get input routine
      67             : 
      68             :     void GetAirNodeData(EnergyPlusData &state, bool &ErrorsFound); // True if errors found during this get input routine
      69             : 
      70             :     void GetMundtData(EnergyPlusData &state, bool &ErrorsFound); // True if errors found during this get input routine
      71             : 
      72             :     void GetDisplacementVentData(EnergyPlusData &state, bool &ErrorsFound); // True if errors found during this get input routine
      73             : 
      74             :     void GetCrossVentData(EnergyPlusData &state, bool &ErrorsFound); // True if errors found during this get input routine
      75             : 
      76             :     void GetUFADZoneData(EnergyPlusData &state, bool &ErrorsFound); // True if errors found during this get input routine
      77             : 
      78             :     void SharedDVCVUFDataInit(EnergyPlusData &state, int const ZoneNum);
      79             : 
      80             :     void GetRoomAirflowNetworkData(EnergyPlusData &state, bool &ErrorsFound); // True if errors found during this get input routine
      81             : 
      82             :     void GetRAFNNodeNum(EnergyPlusData &state,
      83             :                         std::string const &RAFNNodeName,
      84             :                         int &ZoneNum,
      85             :                         int &RAFNNodeNum,
      86             :                         bool &Errorfound); // find zone number and node number based on the node name
      87             : 
      88             :     bool CheckEquipName(EnergyPlusData &state,
      89             :                         std::string const &EquipType, // Equipment type
      90             :                         std::string const &EquipName, // Equipment Name
      91             :                         std::string &SupplyNodeName,  // Supply node name
      92             :                         std::string &ReturnNodeName,  // Return node name
      93             :                         int TotNumEquip,              // how many of this equipment type
      94             :                         int TypeNum);                 // equipment type number
      95             : 
      96             : } // namespace RoomAirModelManager
      97             : 
      98        1542 : struct RoomAirModelManagerData : BaseGlobalStruct
      99             : {
     100             : 
     101             :     bool GetUCSDDVDataFlag = true; // UCSD
     102             :     bool GetAirModelData = true;   // Used to "get" all air model data
     103             :     bool MyOneTimeFlag = true;
     104             :     int CompNum = 0;
     105             :     int TypeNum = 0;
     106             :     int NodeNum1 = 0;
     107             :     int NodeNum2 = 0;
     108             :     int CompNumber = 0;                    // AirflowNetwork Component number
     109             :     int TypeNumber = 0;                    // Airflownetwork Type Number within a component
     110             :     int NodeNumber1 = 0;                   // The first node number in an AirflowNetwork linkage data
     111             :     int NodeNumber2 = 0;                   // The Second node number in an AirflowNetwork linkage data
     112             :     int contFloorBegin = 0;                // counter
     113             :     int contFloorLast = 0;                 // counter
     114             :     int contFloor = 0;                     // counter
     115             :     int contCeilingBegin = 0;              // counter
     116             :     int contCeilingLast = 0;               // counter
     117             :     int contCeiling = 0;                   // counter
     118             :     int contWallBegin = 0;                 // counter
     119             :     int contWallLast = 0;                  // counter
     120             :     int contWall = 0;                      // counter
     121             :     int contWindowBegin = 0;               // counter
     122             :     int contWindowLast = 0;                // counter
     123             :     int contWindow = 0;                    // counter
     124             :     int contInternalBegin = 0;             // counter
     125             :     int contInternalLast = 0;              // counter
     126             :     int contInternal = 0;                  // counter
     127             :     int contDoorBegin = 0;                 // counter
     128             :     int contDoorLast = 0;                  // counter
     129             :     int contDoor = 0;                      // counter
     130             :     int Loop = 0;                          // counter
     131             :     int Loop2 = 0;                         // counter
     132             :     int Loop3 = 0;                         // counter
     133             :     int i = 0;                             // counter
     134             :     int N = 0;                             // counter
     135             :     Real64 Z1ZoneAux = 0.0;                // Auxiliary variables
     136             :     Real64 Z2ZoneAux = 0.0;                // Auxiliary variables
     137             :     Real64 Z1Zone = 0.0;                   // Auxiliary variables
     138             :     Real64 Z2Zone = 0.0;                   // Auxiliary variables
     139             :     Real64 CeilingHeightDiffMax = 0.1;     // Maximum difference between wall height and ceiling height
     140             :     Real64 Z1ofZoneAux = 0.0;              // Auxiliary variables
     141             :     Real64 Z2ofZoneAux = 0.0;              // Auxiliary variables
     142             :     Real64 Z1ofZone = 0.0;                 // Auxiliary variables
     143             :     Real64 Z2ofZone = 0.0;                 // Auxiliary variables
     144             :     Real64 CeilingHeightDiffMaximum = 0.1; // Maximum difference between wall height and ceiling height
     145             :     Array1D_bool MyEnvrnFlag;
     146             : 
     147           0 :     void clear_state() override
     148             :     {
     149           0 :         *this = RoomAirModelManagerData();
     150           0 :     }
     151             : };
     152             : 
     153             : } // namespace EnergyPlus
     154             : 
     155             : #endif

Generated by: LCOV version 1.13