Skip to content

Commit

Permalink
HVACSingleDuctInduc ii
Browse files Browse the repository at this point in the history
  • Loading branch information
jmythms committed Mar 20, 2021
1 parent 753b109 commit 8879c05
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/EnergyPlus/HVACSingleDuctInduc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -252,12 +252,12 @@ namespace HVACSingleDuctInduc {
Array1D<Real64> Numbers; // Numeric input items for object
Array1D_bool lAlphaBlanks; // Logical array, alpha field input BLANK = .TRUE.
Array1D_bool lNumericBlanks; // Logical array, numeric field input BLANK = .TRUE.
static int NumAlphas(0); // Number of Alphas for each GetObjectItem call
static int NumNumbers(0); // Number of Numbers for each GetObjectItem call
static int TotalArgs(0); // Total number of alpha and numeric arguments (max) for a
int NumAlphas(0); // Number of Alphas for each GetObjectItem call
int NumNumbers(0); // Number of Numbers for each GetObjectItem call
int TotalArgs(0); // Total number of alpha and numeric arguments (max) for a
// certain object in the input file
int IOStatus; // Used in GetObjectItem
static bool ErrorsFound(false); // Set to true if errors in input, fatal at end of routine
bool ErrorsFound(false); // Set to true if errors in input, fatal at end of routine
bool IsNotOK; // Flag to verify name
int CtrlZone; // controlled zome do loop index
int SupAirIn; // controlled zone supply air inlet index
Expand Down Expand Up @@ -496,7 +496,7 @@ namespace HVACSingleDuctInduc {
Real64 IndRat; // unit induction ratio
Real64 RhoAir; // air density at outside pressure and standard temperature and humidity

static bool ZoneEquipmentListChecked(false); // True after the Zone Equipment List has been checked for items
bool ZoneEquipmentListChecked(false); // True after the Zone Equipment List has been checked for items
int Loop; // Loop checking control variable
Real64 rho; // local fluid density
int HWOutletNode; // local node index for hot water coil's outlet node
Expand Down Expand Up @@ -744,8 +744,8 @@ namespace HVACSingleDuctInduc {
Real64 DesPriVolFlow;
Real64 RhoAir;
Real64 CpAir;
static int CoilWaterInletNode(0);
static int CoilWaterOutletNode(0);
int CoilWaterInletNode(0);
int CoilWaterOutletNode(0);
bool ErrorsFound;
Real64 Cp; // local fluid specific heat
Real64 rho; // local fluid density
Expand Down

0 comments on commit 8879c05

Please sign in to comment.