diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 23df20c39..c4b51782f 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -31,7 +31,7 @@ jobs: config: Release arch: "64" compiler: clang - experimental: false + experimental: true # - os: ubuntu # os_ver: "22.04" # config: Release @@ -78,7 +78,7 @@ jobs: id: test run: ctest -C ${{ matrix.config }} -j ${{ steps.cpu-cores.outputs.count }} --output-on-failure -E shadetest # CI can't do GPU calcs at this time (the steps above get us close, but throws an exception on destruction) working-directory: build - continue-on-error: false + continue-on-error: true - name: Upload report files artifact if: steps.test.outcome == 'failure' uses: actions/upload-artifact@v4 @@ -87,6 +87,9 @@ jobs: path: | test/*.rep test/*.REP + - name: Check test failure + if: steps.test.outcome == 'failure' + run: exit 1 build-doc: strategy: fail-fast: false diff --git a/cmake/build.cmake b/cmake/build.cmake index c9758707f..f47329aea 100644 --- a/cmake/build.cmake +++ b/cmake/build.cmake @@ -5,7 +5,7 @@ if (NOT DEFINED TARGET_NAME) set(TARGET_NAME "all") endif () endif () -message("Building ${TARGET_NAME}...") +message(STATUS "Building ${TARGET_NAME}...") include(cmake/utility.cmake) set_build_configuration() diff --git a/doc/src/records/battery.md b/doc/src/records/battery.md index e5cd93c49..8377f5130 100644 --- a/doc/src/records/battery.md +++ b/doc/src/records/battery.md @@ -18,9 +18,9 @@ Name of the battery system. Given after the word BATTERY. **btMeter=*choice*** -Name of a meter by which the BATTERY's power input/output (i.e., charge/discharge) is recorded. Charges to the BATTERY system would be seen as a positive powerflow while discharges from the BATTERY system would be seen as a negative value. +Name of a METER to which the BATTERY's charge/discharge energy flows are recorded. Battery energy flows are accumulated to meter end use "BT". Battery energy flows are seen from the standpoint of a "load" on the electric grid, so charges to the BATTERY system are positive values while discharges from the BATTERY system are negative values. -Note btMeter determines the source for the probe value *loadSeen*. See discussion and example under btChgReq (below). +Note btMeter also determines the source for the probe value *loadSeen*. See discussion and example under btChgReq (below). <%= member_table( units: "", @@ -30,20 +30,6 @@ Note btMeter determines the source for the probe value *loadSeen*. See discussi variability: "constant") %> -**btEndUse=*choice*** - -Meter end use to which the BATTERY's charged/discharged energy should be accumulated. Note that the battery end use is seen from the standpoint of a "load" on the electric grid. That is, when the battery is being charged, the end use will show up as positive. When the battery is being discharged (i.e., when it is offsetting other loads), it is seen as negative. - -<%= insert_file('doc/src/enduses.md') %> - -<%= member_table( - units: "", - legal_range: "*Codes listed above*", - default: "BT", - required: "No", - variability: "constant") - %> - **btChgEff=*float*** The charging efficiency of storing electricity into the BATTERY system. A value of 1.0 means that no energy is lost and 100% of charge energy enters and is stored in the battery. diff --git a/src/CNRECS.DEF b/src/CNRECS.DEF index 25b317c6f..54159a443 100644 --- a/src/CNRECS.DEF +++ b/src/CNRECS.DEF @@ -5434,7 +5434,6 @@ RECORD BATTERY "Battery" *RAT // input / runtime battery *declare "float bt_ChgReqTDVPeakSave();" *i TI bt_meter; // meter for system electricity production - *f ENDUSECH bt_endUse // end use of energy. defaults to "BT" *r NOYESCH bt_useUsrChg // YES: user specifies charge request; // NO (default): calculate charge request via // default strategy @@ -5587,7 +5586,8 @@ RECORD MTR "meter" *RAT // Meter input/runtime: energy use by meter, interval, *declare "RC mtr_CkF( int options);" *declare "void mtr_HrInit();" *declare "bool mtr_HasSubmeter() const { return mtr_subMtri[ 0] != 0; }" - *declare "void mtr_AccumFromSubmeters();" + *declare "enum ACCUMOPT { ALL, BATTERYONLY};" + *declare "void mtr_AccumFromSubmeters( ACCUMOPT opt);" *declare "RC mtr_Validate() const;" *declare "MTR_IVL* mtr_GetMTRIVL( int ivl) { return &Y + (ivl - C_IVLCH_Y); }" *declare "const MTR_IVL* mtr_GetMTRIVL( int ivl) const { return &Y + (ivl - C_IVLCH_Y); }" diff --git a/src/ancrec.cpp b/src/ancrec.cpp index 70527f972..5e03767c6 100644 --- a/src/ancrec.cpp +++ b/src/ancrec.cpp @@ -56,7 +56,7 @@ record::record(BP _b, TI i, SI noZ/*=0*/) // construct record i of basAnc b, z b = _b; rt = _b->rt; ss = i; // set base class members, for appl and anchor class use - gud = 1; // say space in use and record good + r_status = 1; // say space in use and record good } // record::record //--------------------------------------------------------------------------------------------------------------------------- void* record::field( int fn) // point to member in record by FIELD # @@ -124,7 +124,7 @@ int record::IsNameMatch( const char* _name) const return !_stricmp( _name, Name()); } // record::IsNameMatch //----------------------------------------------------------------------------- -/*virtual*/ void record::Copy( // copy user and ul data and 'gud' from another record of same type +/*virtual*/ void record::Copy( // copy user and ul data and r_status from another record of same type const record* pSrc, // source record int options/*=0*/) // rcoLEAVENAME: do NOT copy name { @@ -137,7 +137,7 @@ int record::IsNameMatch( const char* _name) const #endif // bitwise copy members preceding name (not including internal members) - int offBeg = offsetof(record, gud); + int offBeg = offsetof(record, r_status); int offEnd = offsetof(record, name); memcpy((char*)this + offBeg, (const char*)pSrc + offBeg, offEnd - offBeg); @@ -804,8 +804,7 @@ int basAnc::GetCount() const // return # of records { int count = 0; for (int i = mn; i <= n; i++) - if (rec(i).gud) - ++count; + count += rec(i).r_status > 0; return count; } // basAnc::GetCount @@ -822,7 +821,7 @@ int basAnc::MakeRecordList( for (int i = mn; i <= n; i++) { const record* pR = &rec(i); - if (pR->gud) + if (pR->r_status > 0) { const char* s1 = proc != nullptr ? (*proc)(pR) : pR->Name(); @@ -856,7 +855,7 @@ void FC basAnc::regis() // "register" anchor for nextAnc() iteration. Constr //--------------------------------------------------------------------------------------------------------------------------- void basAnc::desRecs( SI _mn, SI _n) { - //if (mn <= n) // if any records allocated: protection for ptr vf call if nec?? + //if (mn <= n) // if any records allocated: protection for ptr vf call if nec?? if (ptr()) // if record memory is allocated for (TI i = max(mn,_mn); i <= min(n,_n); i++) // loop allocated record spaces in range given by caller desRec(i); // conditionally destroy record in space @@ -944,7 +943,7 @@ RC FC basAnc::reAl( TI _n, int erOp/*=ABT*/) // allocate space for n (0=default // loop all pre-reAl gud records for (int i=mn; i<=n ; i++) - if (rec( i).gud) + if (rec( i).r_status > 0) rec( i).FixUp(); // virtual, allow record to fix e.g. link ptrs } return rc; @@ -975,10 +974,10 @@ RC basAnc::add( // construct record i (0 = next). Allocs if nec. { i = mn; // 1: record # 0 is not used if (ptr()) { - while (i <= n && rec(i).gud) i++; // find record space with gud==0 else 1 more than last used. + while (i <= n && rec(i).r_status) i++; // find record space with gud==0 else 1 more than last used. } } - else if (i <= n && rec(i).gud) // else if have (unexpected) request to "add" existing in-use record + else if (i <= n && rec(i).r_status) // else if have (unexpected) request to "add" existing in-use record desRec(i); // destroy that record's current contents (eg free deriv class heap ptrs) if ( i >= nAl // if (more) record spaces must be allocated (nAl is +1; i,n are not) || !ptr() ) // insurance @@ -1006,9 +1005,9 @@ RC FC basAnc::del( TI i, int erOp/*=ABT*/) // delete (squeeze out) ith record { record& dest = rec(i); record& src = rec(i+1); - if (src.gud) // if next record good + if (src.r_status) // if next record good { - if (!dest.gud) + if (!dest.r_status) conRec(i); // construct destination if nec to insure vftp, rt, b, ss set. dest.Copy( &src); // copy record i+1 to i without dup'ing heap ptrs // tentatively no destroy: does nothing in base class, and deriv class might delete heap ptrs we did not dup. @@ -1017,12 +1016,13 @@ RC FC basAnc::del( TI i, int erOp/*=ABT*/) // delete (squeeze out) ith record #endif } else // (not currently expected 2-92) - dest.gud = 0; // nothing to copy from next slot, say this slot is free + dest.r_status = 0; // nothing to copy from next slot, say this slot is free } - rec(i).gud = 0; // say vacated slot at end is free - // if possible leftover undup'd ptrs in vacated slots with gud=0 are a problem, CONSTRUCT the slots (conRec(i)) to zero data. + rec(i).r_status = 0; // say vacated slot at end is free + // if possible leftover undup'd ptrs in vacated slots with r_status=0 are a problem, + // CONSTRUCT the slots (conRec(i)) to zero data. n--; // max subscript is one less - return RCOK; // error return above. + return RCOK; // error return above. } // basAnc::del //--------------------------------------------------------------------------------------------------------------------------- void basAnc::statSetup( // init anchor with given non-expandable static record memory diff --git a/src/ancrec.h b/src/ancrec.h index a3d5d2676..5ff85f4cd 100644 --- a/src/ancrec.h +++ b/src/ancrec.h @@ -76,7 +76,7 @@ class basAnc // base class for record anchors: basAnc RCT rt; // record type (from rcdef.exe); now mainly for internal checks // members set by basAnc mbr fcns TI nAl; // max+1 allocated space subscript (non-static) - TI mn, n; // minimum (0 or 1) and max NOT+1 used record subscript (spaces unused if .gud==0) + TI mn, n; // minimum (0 or 1) and max NOT+1 used record subscript (spaces unused if .r_status==0) inline int GetSSRange() const { return n-mn+1; } // count INCLUDING UNUSED inline int GetSS0() const { return mn; } // subscript of 0th entry int ba_flags; // bits, RFxxxx defines above -- also set by user @@ -116,6 +116,10 @@ class basAnc // base class for record anchors: basAnc void an_SetCULTLink( const CULT* pCULT) { an_pCULT = pCULT; } static void an_SetCULTLinks(); int GetCount() const; + int GetCountMax() const + { return n-mn+1; // max possible # records (includes unused) + // faster than GetCount() + } int MakeRecordList(char* list, size_t listDim, const char* brk, const char* (*proc)(const record* pR)=nullptr) const; protected: @@ -142,7 +146,7 @@ class record // base class for records RCT rt; // record type (from rcdef.exe); now mainly for internal checks TI ss; // record subscript BP b; // pointer to record's anchor; 0 may indicate unconstructed record space. - SI gud; // 0: free; > 0: good record; [<0, skip/retain]. bits 0x7ffe avail to appl. + SI r_status; // 0: free; > 0: good record; [<0, skip/retain]. bits 0x7ffe avail to appl. // overhead members for appl user language (ul). CAUTION check record::Copy if these members changed. TI ty, li; // 0 or user language TYPE and LIKE subscripts int fileIx; // 0 or source file name index: see ancrecs:getFileName and getFileIx. 2-94. @@ -157,7 +161,7 @@ class record // base class for records // base class functions record( BP _b, TI i, SI noZ=0); // construct, as record i for anchor b, 0 mbrs unless noZ // override for records with specific destructor requirements such as heap pointers to delete: - virtual ~record() { gud = 0; } // base destructor: say record space is free + virtual ~record() { r_status = 0; } // base destructor: say record space is free virtual void DelSubOjects( int /*options*/=0) {} // override to delete records heap objects virtual RC RunDup(const record* pSrc, int options=0) { Copy(pSrc, options); return RCOK; } virtual void ReceiveRuntimeMessage( const char* /*msg*/) { } @@ -340,7 +344,7 @@ template class anc : public basAnc T& operator[]( int i) const { return *GetAt( i); } // typed ref to ith record bool GetAtGud(int i, T* &r) const { - if (i >= mn && i <= n && (p + i)->gud) + if (i >= mn && i <= n && (p + i)->r_status) { r = p + i; return true; } @@ -371,7 +375,7 @@ template class anc : public basAnc protected: void desRecs( TI mn=0, TI n=32767); // ~ all records or range (as b4 freeing block) virtual void desRec( TI i) - { if (p[i].gud) + { if (p[i].r_status) p[i].T::~T(); // destroy record if constructed } @@ -383,14 +387,14 @@ template class anc : public basAnc }; // class anc //============================================================================= //----- macro to loop over records of given anchor (type known) (hook to change re skipping deleted records) -#define RLUP( B, rp) for (rp=(B).p+(B).mn; rp <= (B).p + (B).n; rp++) if (rp->gud > 0) +#define RLUP( B, rp) for (rp=(B).p+(B).mn; rp <= (B).p + (B).n; rp++) if (rp->r_status > 0) //----- macro to loop over records of given anchor (type known) in reverse (hook to change re skipping deleted records) -#define RLUPR( B, rp) for (rp=(B).p+(B).n; rp >= (B).p+(B).mn; rp--) if (rp->gud > 0) +#define RLUPR( B, rp) for (rp=(B).p+(B).n; rp >= (B).p+(B).mn; rp--) if (rp->r_status > 0) //----- macro to loop over records of given anchor (type known) (hook to change re skipping deleted records) //----- variant with condition -#define RLUPC( B, rp, C) for (rp=(B).p+(B).mn; rp <= (B).p + (B).n; rp++) if (rp->gud > 0 && (C)) +#define RLUPC( B, rp, C) for (rp=(B).p+(B).mn; rp <= (B).p + (B).n; rp++) if (rp->r_status > 0 && (C)) #if 0 0 unused @@ -398,14 +402,14 @@ template class anc : public basAnc 0 #define RLUPGEN( B, rp) for ( rp = (record *)( (char *)(B).ptr() + (B).eSz*(B).mn ); \ 0 rp <= (record *)( (char *)(B).ptr() + (B).eSz*(B).n ); \ 0 (char *)rp += (B).eSz ) \ -0 if (((record *)rp)->gud > 0) +0 if (((record *)rp)->r_status > 0) #endif //----- macro to loop over records of generic anchor in member fcn (hook to change re skipping deleted records) #define RLUPTHIS(rp) for ( rp = (record *)( (char *)ptr() + eSz*mn ); \ rp <= (record *)( (char *)ptr() + eSz*n ); \ IncP( DMPP( rp), eSz) ) \ - if (((record *)rp)->gud > 0) + if (((record *)rp)->r_status > 0) //============================================================================= #ifdef NEEDLIKECTOR // define where this constructor is USED: avoids generating for classes where not used. diff --git a/src/battery.cpp b/src/battery.cpp index 9a5c1b536..b111e55e7 100644 --- a/src/battery.cpp +++ b/src/battery.cpp @@ -133,8 +133,10 @@ RC BATTERY::bt_DoHour( // we divide by 2 because one full discharge and one full charge = one cycle bt_cycles += fabs( dE_bt / bt_maxCap) / 2.f; + + // accumulate to meter if requested if (bt_meter) - MtrB.p[bt_meter].H.mtr_AccumEU(bt_endUse, P_bt * kW_to_btuh); + MtrB.p[bt_meter].H.bt += P_bt * kW_to_btuh; } else { // stage == 2 (after reports): copy current hour results to xxxlh diff --git a/src/cnah2.cpp b/src/cnah2.cpp index 5148867ef..c9cd1a9f8 100644 --- a/src/cnah2.cpp +++ b/src/cnah2.cpp @@ -3940,13 +3940,13 @@ BOO AH::nxZn( ZNR *&zp) // first/next zone served by (having a terminal connect // loop over zones / on reentry, start with zone AFTER last one returned for (zp = zp ? zp + 1 : ZrB.p+ZrB.mn; zp <= ZrB.p + ZrB.n; zp++) // ** RLUP macro expanded & modified ** - if (zp->gud > 0) // .. + if (zp->r_status > 0) // .. { TU *tu /*=NULL*/; for (TI ui = zp->tu1; ui; ui = tu->nxTu4z) // search zone's TERMINALs for one served by airHandler { tu = TuB.p + ui; - if (tu->gud > 0) // insurance + if (tu->r_status > 0) // insurance if (tu->ai==ss) // if TERMINAL is served by 'this' airHandler then ZONE is return TRUE; // have first/next served zone } diff --git a/src/cncult.cpp b/src/cncult.cpp index 5ef96b260..dc06f39bb 100644 --- a/src/cncult.cpp +++ b/src/cncult.cpp @@ -2265,7 +2265,6 @@ static CULT btT[] = //------ BATTERY cmd RAT Entry table, used from cnTopCult //----------------- ----- --------------- ------- -- ------ ----- ------ ------ ---- ---- CULT( "*", STAR, 0, 0, 0, 0, 0, 0, 0.f, N, btStarCkf), CULT( "btMeter", DAT, BATTERY_METER, 0, 0, VEOI, TYREF, &MtriB, N, N, N), -CULT( "btEndUse", DAT, BATTERY_ENDUSE, 0, 0, VEOI, TYCH, 0, C_ENDUSECH_BT, N, N), CULT( "btChgEff", DAT, BATTERY_CHGEFF, 0, 0, VHRLY, TYFL, 0, 0.975f, N, N), CULT( "btDschgEff", DAT, BATTERY_DSCHGEFF,0, 0, VHRLY, TYFL, 0, 0.975f, N, N), CULT( "btMaxCap", DAT, BATTERY_MAXCAP, 0, 0, VEOI, TYFL, 0, 6.f, N, N), diff --git a/src/cncult2.cpp b/src/cncult2.cpp index 820347987..82473fa0d 100644 --- a/src/cncult2.cpp +++ b/src/cncult2.cpp @@ -59,7 +59,7 @@ LOCAL RC topLr(); LOCAL RC topCon2(); LOCAL RC topFnd(); LOCAL RC topGt(); -LOCAL RC topMtr(); +LOCAL RC topMtr( int re); LOCAL RC topGain(); LOCAL RC topRSys1(); LOCAL RC topRSys2(); @@ -278,7 +278,7 @@ LOCAL RC topCkfI( // finish/check/set up inner function CSE_E( topZn( re) ) // do zones. E: returns if error. //--- do meters early: ref'd by reports and maybe many other future things. - CSE_E( topMtr() ) // check/dup all types of meters (energy, dhw, air flow) + CSE_E( topMtr( re) ) // check/dup all types of meters (energy, dhw, air flow) //--- do stuff re reports next -- much used even if error suppresses run. cncult4.cpp. if (!re) // report/exports persist from autosize thru main simulation 6-95. @@ -777,7 +777,7 @@ RC TOPRAT::brFileCk() // check/clean up inputs re binary results files, rob 12-2 //=========================================================================== /*virtual*/ void TOPRAT::Copy(const record* pSrc, int options/*=0*/) { - if (gud) // if record already in use (eg 2nd run) (insurance). Note record must be constructed b4 operator=. + if (r_status) // if record already in use (eg 2nd run) (insurance). Note record must be constructed b4 operator=. freeDM(); record::Copy( pSrc, options); // verifies class (rt) same, copies whole derived class record. ancrec.cpp. @@ -1023,7 +1023,7 @@ ZNR::~ZNR() // zone runtime info record destructor void ZNR::Copy( const record* pSrc, int options/*=0*/) { // first free pointed-to heap objects in destination - if (gud) // if a constructed record + if (r_status) // if a constructed record { dmfree( DMPP( rIgDist)); } @@ -1484,7 +1484,9 @@ x } return rc; } // topGt //=========================================================================== -LOCAL RC topMtr() // check/dup all types of meters (energy, dhw, airflow) +LOCAL RC topMtr( // check/dup all types of meters (energy, dhw, airflow) + int re) // 0 = at RUN + // nz = 2nd call when main simulation follows autosize // copy to run rat. Create sum-of-meters records as needed { RC rc{ RCOK }; @@ -1512,7 +1514,7 @@ LOCAL RC topMtr() // check/dup all types of meters (energy, dhw, airflow) // checks must be done after refs are resolved // (i.e. not at input time) if (rc == RCOK) - rc = cgSubMeterSetup(); + rc = cgSubMeterSetup( re); return rc; } // topMtr @@ -1995,7 +1997,7 @@ RC ckRefPt( // check / access ref from one RAT to another if (mbr <= 0 // min subscript is 1 || mbr > toBase->n // bad if > max subscript in given RAT || ( p = &toBase->rec( mbr), // ok so far; point to record ... - p->gud <= 0) ) // bad if rec unused/bad (poss future) + p->r_status <= 0) ) // bad if rec unused/bad (poss future) { rc = badRefMsg( toBase, fromRec, mbr, mbrName, ownRec); // issue message, return bad p = NULL; diff --git a/src/cnguts.cpp b/src/cnguts.cpp index ee98565e0..a5e2b6607 100644 --- a/src/cnguts.cpp +++ b/src/cnguts.cpp @@ -76,7 +76,32 @@ LOCAL void FC binResInit( int isAusz); LOCAL void FC binResFinish(); #endif -//----------------------------------------------------------------------------------------------------------- +/////////////////////////////////////////////////////////////////////////////// +// struct SUBMETERSEQ: retains accumulation order for submeters +// Why: Submeters must be accumulated "bottom up". +// Order is derived in sortSubMeterList and retained here. +struct SUBMETERSEQ +{ + void smsq_Clear() + { + smsq_MTR.clear(); + smsq_LOADMTR.clear(); + } + + RC smsq_Setup( int re); + void smsq_AccumSubhr() const; + enum class smsqACCUMWHAT { smsqACCUMALL, smsqACCUMBATTERYONLY }; + void smsq_AccumHour( MTR::ACCUMOPT accumOpt) const; + +private: + std::vector< TI> smsq_MTR; // MTR submeter accum order + std::vector< TI> smsq_LOADMTR; // LOADMTR submeter accum order +}; // SUBMETERSEQ +//----------------------------------------------------------------------------- +static SUBMETERSEQ SubMeterSeq; +//============================================================================= + +//----------------------------------------------------------------------------- void FC cgClean( // cg overall init/cleanup routine CLEANCASE cs ) // [STARTUP,], ENTRY, DONE, or CRASH (type in cnglob.h) @@ -696,7 +721,7 @@ LOCAL RC FC doEndIvl() // simulation run end-of-interval processing: results a // results accumulation for interval: simulation and meters doIvlAccum(); // [subhr to hour], hour to day, day to month, month to run as pertinent - if (Top.ivl < C_IVLCH_S) + if (Top.ivl <= C_IVLCH_H) { // battery stage 0 hourly // *AFTER* meter accum // *BEFORE* EVENDIVL expressions (sets probable values) @@ -725,15 +750,18 @@ LOCAL RC FC doEndIvl() // simulation run end-of-interval processing: results a CSE_EF( doIvlExprs( EVENDIVL) ) // do all end-of-interval expressions for this interval. Uses top.ivl. // post-processing steps (may depend on end-of-interval (*e) values) - if (Top.ivl < C_IVLCH_S) + if (Top.ivl <= C_IVLCH_H && BtR.GetCountMax() > 0) // if end of hour and there are batteries { // battery stage 1 hourly // *AFTER* EVENDIVL function eval + // *BEFORE* mtrsFinalize() (called in doIvlFinalize()) BATTERY* bt; RLUP(BtR, bt) CSE_EF(bt->bt_DoHour(1)) + // walk submeters again to propogate enduse bt + SubMeterSeq.smsq_AccumHour( MTR::ACCUMOPT::BATTERYONLY); } - doIvlFinalize(); // finalize meters etc + doIvlFinalize(); // finalize meters etc CSE_EF( doIvlExprs( EVPSTIVL)) // do all post load management expressions for this interval @@ -771,7 +799,7 @@ LOCAL RC FC doEndIvl() // simulation run end-of-interval processing: results a // interval-dependent stuff after reports - switch (Top.ivl) /*lint -e616 cases fall thru */ + switch (Top.ivl) { case C_IVLCH_Y: // last call of run // note weather file is closed by cgDone (so done even after error). @@ -839,6 +867,12 @@ LOCAL RC FC doEndIvl() // simulation run end-of-interval processing: results a pSW->sw_ReportBalErrorsIf(); } vpRxportsFinish(); // finish terminate reports/exports, cgresult.cpp: eg be sure cond rpt footers done. +#if defined( _DEBUG) + MTR* mtr; + RLUP(MtrB, mtr) + mtr->mtr_Validate(); +#endif + // fall thru case C_IVLCH_M: // last call of month Top.isFirstMon = FALSE; // no longer first month of run @@ -1463,29 +1497,6 @@ void ZNRES::zr_InitCurr() // initialize curr mbrs } // ZNRES::zr_InitCurr //============================================================================= -// struct SUBMETERSEQ: retains accumulation order for submeters -// Why: Submeters must be accumulated "bottom up". -// Order is derived in sortSubMeterList and retained here. -struct SUBMETERSEQ -{ - void smsq_Clear() - { - smsq_MTR.clear(); - smsq_LOADMTR.clear(); - } - - RC smsq_Setup(); - void smsq_AccumSubhr() const; - void smsq_AccumHour() const; - -private: - std::vector< TI> smsq_MTR; // MTR submeter accum order - std::vector< TI> smsq_LOADMTR; // LOADMTR submeter accum order -}; // SUBMETERSEQ -//----------------------------------------------------------------------------- -static SUBMETERSEQ SubMeterSeq; - - #define ZRi1 nHrHeat // 1st SI member #define ZRnI ((oRes(nHrCeilFan) - oRes(nHrHeat))/sizeof(SI) + 1) // # SI members. // SIs: # hours @@ -2160,6 +2171,10 @@ static RC checkSubMeterList( // helper for input-time checking submeter list } // checkSubMeterList //----------------------------------------------------------------------------- static RC sortSubMeterList( // sort and check re submeters + int re, // initialization phase + // 0: at RUN (display warnings) + // nz = 2nd call when main simulation follows autosize + // (do not display warnings) basAnc& b, // collection of meter records int fnList, // field containing submeter list for // type @@ -2185,7 +2200,7 @@ static RC sortSubMeterList( // sort and check re submeters for (int iR = b.GetSS0(); iR < b.GetSSRange(); iR++) { const record* pR = b.GetAtSafe(iR); - if (!pR || !pR->gud) + if (!pR || pR->r_status <= 0) continue; const TI* subMeterList = reinterpret_cast(pR->field(fnList)); @@ -2229,9 +2244,9 @@ static RC sortSubMeterList( // sort and check re submeters if (!dgsm.dg_CountRefs(iV, vRefCounts)) continue; // unexpected cyclic for (int i=0; i 1) + { if (vRefCounts[i] > 1 && !re) // display warning only once per re { record* pR = b.GetAtSafe(i); - pR->oWarn("Duplicate reference from %s '%s'", b.what, pRRoot->Name()); + pR->oInfo("Duplicate reference from %s '%s'", b.what, pRRoot->Name()); // rc not changed, let run continue // dups accum correctly but probably not intended } @@ -2241,7 +2256,9 @@ static RC sortSubMeterList( // sort and check re submeters return rc; } // sortSubMeterList //============================================================================= -RC cgSubMeterSetup() // public access to SUBMETER::smsq_Setup +RC cgSubMeterSetup( // public access to SUBMETER::smsq_Setup + int re) // 0: at RUN + // nz = 2nd call when main simulation follows autosize { RC rc = RCOK; @@ -2258,20 +2275,22 @@ RC cgSubMeterSetup() // public access to SUBMETER::smsq_Setup // determine submeter accumulation sequences // can fail due to cyclic refs if (rc == RCOK) - rc = SubMeterSeq.smsq_Setup(); + rc = SubMeterSeq.smsq_Setup( re); return rc; } // cgSubMeterSetup //------------------------------------------------------------------------------ -RC SUBMETERSEQ::smsq_Setup() // derive submeter sequences +RC SUBMETERSEQ::smsq_Setup( // derive submeter sequences + int re) // 0: at RUN + // nz = 2nd call when main simulation follows autosize { RC rc = RCOK; smsq_Clear(); - rc |= sortSubMeterList(MtrB, MTR_SUBMTRI, smsq_MTR); + rc |= sortSubMeterList(re, MtrB, MTR_SUBMTRI, smsq_MTR); - rc |= sortSubMeterList(LdMtrR, LOADMTR_SUBMTRI, smsq_LOADMTR); + rc |= sortSubMeterList(re, LdMtrR, LOADMTR_SUBMTRI, smsq_LOADMTR); return rc; @@ -2287,12 +2306,17 @@ void SUBMETERSEQ::smsq_AccumSubhr() const // submeter accum for meters with sub } } // SUBMETERSEQ::smsq_AccumSubhr //----------------------------------------------------------------------------- -void SUBMETERSEQ::smsq_AccumHour() const // submeter accum for meters with hour resolution +void SUBMETERSEQ::smsq_AccumHour( // submeter accum for meters with hour resolution + MTR::ACCUMOPT accumOpt) const // BATTERYONLY: accum only enduse bt (done after battery calcs) + // ALL: accum all enduses { +#if 0 && defined( _DEBUG) + printf("\n%d smsq_AccumHour %d", Top.iHr, batteryOnly); +#endif for (TI ti : smsq_MTR) { MTR* mtr; if (MtrB.GetAtGud(ti, mtr)) - mtr->mtr_AccumFromSubmeters(); + mtr->mtr_AccumFromSubmeters( accumOpt); } } // SUBMETERSEQ::smsq_AccumHour @@ -2307,10 +2331,12 @@ LOCAL void FC mtrsAccum( // Accumulate metered results: add interval to next, + // Not called with ivl = C_IVLCH_H { if (ivl == C_IVLCH_D) // if accumulating hour -> day - SubMeterSeq.smsq_AccumHour(); // accumulate hour ivl from submeter(s) with possible multipliers - // Hourly-interval submeters defined for METER (8-23) - // Done only for hour. - // See also smsq_AccumSubhr() re subhr-interval meters. + { // accumulate hour ivl from submeter(s) with possible multipliers + // Hourly-interval submeters defined for METER (8-23) + // Done only for hour. + // See also smsq_AccumSubhr() re subhr-interval meters. + SubMeterSeq.smsq_AccumHour(MTR::ACCUMOPT::ALL); + } // METERs MTR* mtr; @@ -2445,9 +2471,9 @@ LOCAL void FC mtrsFinalize( // Finalize meters (after post-stage calcs e.g. bat // Note: doHourGains 0's MTR hour info at start hour. mtrSub2->mtr_Accum1( mtrSub1, ivl, 2 + (firstflg!=0)); -#if 0 && defined( _DEBUG) +#if defined( _DEBUG) if (!Top.isWarmup) - mtr->mtr_Validate(); + mtrSub2->mtr_Validate1(mtr, ivl); #endif #if 0 && defined( _DEBUG) @@ -2487,18 +2513,21 @@ RC MTR_IVL::mtr_Validate1( // validity checks w/ message(s) char msgs[2000] = { 0 }; - float xTot = VSum(&clg, NENDUSES); - float diff = xTot - tot; - if (fabs(diff) > 1.f) - sprintf( msgs, "Tot (%0.1f) != VSum() (%0.1f), diff = %0.1f", - tot, xTot, diff); + // test for consistency amoung sum of enduses and tot + // use frDiff because tiny absolute differences (a few Btu) are common when totals are large. + double xTot = VSum(&clg, NENDUSES); + double fDiff = frDiff(double( tot), xTot, 1.); + if (fDiff > 0.0001) + sprintf( msgs, "Tot (%0.1f) != VSum() (%0.1f), fDiff = %0.5f", + tot, xTot, fDiff); + // test that allEU is consistent xTot = allEU + pv + bt; - diff = xTot - tot; - if (fabs(diff) > 1.f) + fDiff = frDiff(double( tot), xTot, 1.); + if (fDiff > 0.0001) strCatIf( msgs, sizeof( msgs), "\n ", - strtprintf( "Tot(% 0.1f) != allEU + pv + bt (% 0.1f), diff = % 0.1f", - tot, xTot, diff)); + strtprintf( "Tot(% 0.1f) != allEU + pv + bt (% 0.1f), fDiff = % 0.5f", + tot, xTot, fDiff)); if (msgs[0]) rc |= mtr->orWarn(static_cast(msgs)); @@ -2590,13 +2619,21 @@ void MTR::mtr_HrInit() // init prior to hour accumulation // and .allEU follows last end use (=.pv) } // MTR::mtr_HrInit //----------------------------------------------------------------------------- -void MTR::mtr_AccumFromSubmeters() // submeter accumulation into this MTR +void MTR::mtr_AccumFromSubmeters( // submeter accumulation into this MTR + ACCUMOPT opt) // BATTERYONLY: accumulate only enduse bt (done after battery calcs) + // ALL: accumulate all enduses (but not tot or allEU) + // bt is accumulated, but harmless +// accumulates all enduses (not tot or allEU) +// note bt is 0 at this point (will be set in bt_doHour()) { // submeters for (int iSM = 0; mtr_subMtri[iSM] > 0; iSM++) { const MTR* pSM = MtrB.GetAt(mtr_subMtri[iSM]); - VAccum(&H.clg, NENDUSES, &pSM->H.clg, mtr_subMtrMult[iSM]); + if (opt == BATTERYONLY) + H.bt += pSM->H.bt * mtr_subMtrMult[iSM]; + else + VAccum(&H.clg, NENDUSES, &pSM->H.clg, mtr_subMtrMult[iSM]); } } // MTR::mtr_AccumFromSubmeters //============================================================================= diff --git a/src/cnguts.h b/src/cnguts.h index d5f25320d..f38342990 100644 --- a/src/cnguts.h +++ b/src/cnguts.h @@ -226,7 +226,7 @@ RC FC cgFazInit( bool isAusz); // init done for main sim or autosize -- once b RC FC cgRddInit( bool isAusz); // init done for main sim run or each autoSize design day RC FC cgRddDone( bool isAusz); // cleanup for main sim run or each autoSize design day RC FC cgFazDone( bool isAusz); // cleanup for main sim or autosize -- once after all design days -RC cgSubMeterSetup(); // initialize for submeter accumulation +RC cgSubMeterSetup( int re); // initialize for submeter accumulation // cnausz.cpp RC FC cgAusz(); diff --git a/src/cul.cpp b/src/cul.cpp index 67d810ede..7bcbc5468 100644 --- a/src/cul.cpp +++ b/src/cul.cpp @@ -3928,7 +3928,7 @@ LOCAL SI FC nxRec( // first/next record in current basAnc (xSp->b) if (xSp->i > xSp->b->n) // if no more entries return 0; // say done xStkPt(); // set xSp->e, ->fs0 (and others) - if ( ((record *)xSp->e)->gud > 0 // if good record + if ( ((record *)xSp->e)->r_status > 0 // if good record || bads ) // or accepting bad/deleted entries break; // found record to return } diff --git a/src/dhwcalc.cpp b/src/dhwcalc.cpp index 3036fb3e2..601e9911a 100644 --- a/src/dhwcalc.cpp +++ b/src/dhwcalc.cpp @@ -2578,7 +2578,7 @@ RC DHWDAYUSE::wdu_Init( // one-time inits for (int iWU = wdu_wuSsBeg; iWU < wdu_wuSsEnd; iWU++) { pWU = WuR.GetAt(iWU); - if (!pWU->gud || pWU->ownTi != ss) + if (pWU->r_status <= 0 || pWU->ownTi != ss) continue; // draw sequence numbers if (pWU->wu_eventID > eventIDmax[pWU->wu_hwEndUse]) @@ -2592,7 +2592,7 @@ RC DHWDAYUSE::wdu_Init( // one-time inits int iWX; for (iWX = pWU->ss - 1; iWX > 0; iWX--) { const DHWUSE* pWUX = (const DHWUSE*)pWU->b->GetAtSafe(iWX); - if (pWUX && pWUX->gud && pWUX->ownTi == ss + if (pWUX && pWUX->r_status > 0 && pWUX->ownTi == ss && pWUX->wu_hwEndUse == pWU->wu_hwEndUse && pWUX->wu_eventID == pWU->wu_eventID) { pWU->wu_drawSeqN = pWUX->wu_drawSeqN; // part of previous event, use same seq # @@ -2623,7 +2623,7 @@ RC DHWDAYUSE::wdu_DoHour( // accumulate tick-level HW use for (int iWU = wdu_wuSsBeg; iWU < wdu_wuSsEnd; iWU++) { pWU = WuR.GetAt(iWU); - if (pWU->gud && pWU->ownTi == ss) + if (pWU->r_status > 0 && pWU->ownTi == ss) rc |= pWU->wu_DoHour(pWS, wdu_mult, Top.iHr); } } @@ -6101,7 +6101,7 @@ DHWLOOPSEG* DHWLOOPSEG::wg_GetInputDHWLOOPSEG() const const anc< DHWLOOPSEG>* B = static_cast< const anc< DHWLOOPSEG>*> ( b); if (B) for (int ix = ss-1; ix >= B->mn; ix--) { DHWLOOPSEG* pWG = B->GetAtSafe(ix); - if (pWG && pWG->gud > 0 && pWG->ownTi == ownTi) + if (pWG && pWG->r_status > 0 && pWG->ownTi == ownTi) return pWG; } return NULL; diff --git a/src/exman.cpp b/src/exman.cpp index 228884b4a..4b3b3a9be 100644 --- a/src/exman.cpp +++ b/src/exman.cpp @@ -995,7 +995,7 @@ RC FC exWalkRecs() for (TI i = b->mn; i <= b->n; i++) // loop subscripts { record& rec = b->rec(i); - if (rec.gud <= 0) // if deleted or skip-flagged + if (rec.r_status <= 0) // if deleted or skip-flagged continue; // ... record, skip it 2-91 char* e = (char*)&rec; // point record diff --git a/test/ASHPPkgRoom.cse b/test/ASHPPkgRoom.cse index 245e52cf7..9a1ed4701 100644 --- a/test/ASHPPkgRoom.cse +++ b/test/ASHPPkgRoom.cse @@ -17,7 +17,6 @@ dt = "YES" heatDsTDbO = 37 coolDsDay = DD1 - dbgPrintMaskC = 4 // dump CULT tables MATERIAL "mat-Gypsum Board" matDens = 40 diff --git a/test/bt_test.cse b/test/bt_test.cse index 7c7372616..3192571a0 100644 --- a/test/bt_test.cse +++ b/test/bt_test.cse @@ -20,7 +20,6 @@ GAIN "BuildingLoadInitNo" gnPower = 0.01 * kw_to_btuh BATTERY "BatteryInitNo" btMeter = ElecMtrInitNo - btEndUse = BT btMaxCap = 10.0 // kWh btMaxChgPwr = 5.0 // kW btMaxDschgPwr = 5.0 // kW @@ -31,7 +30,7 @@ BATTERY "BatteryInitNo" // This battery should be initialized to the initSOE value at the beginning of // the simulation. Since the spreadsheet shows the SOE values at the END of // each timestep, we should see the first SOE at 0.799 (0.8 - 0.01 kWh / 10kWh) = -// 0.799), then dropping 0.001 each additional hour. +// 0.799), then dropping 0.01 each additional hour. METER "ElecMtrInitYes" GAIN "BuildingLoadInitYes" LIKE "BuildingLoadInitNo" gnMeter = ElecMtrInitYes @@ -39,6 +38,9 @@ BATTERY "BatteryInitYes" LIKE "BatteryInitNo" btMeter = ElecMtrInitYes btInitSOE = 0.8 // 80% state of energy +REPORT rpType=MTR rpMeter = "ElecMtrInitNo" rpFreq=MONTH +REPORT rpType=MTR rpMeter = "ElecMtrInitYes" rpFreq=MONTH + REPORT rpType = UDT rpFreq = HOUR @@ -49,12 +51,12 @@ REPORT rpFooter = "No" ReportCol colhead="Day" colVal=@Top.dateStr ReportCol colhead="Hour" colVal=@Top.iHr - ReportCol colhead="YesSOE" colWid=6 colVal=@BATTERY["BatteryInitYes"].soe - ReportCol colhead="YesEgy[kWh]" colWid=11 colVal=@BATTERY["BatteryInitYes"].energy - ReportCol colhead="YesBT[kW]" colWid=9 colVal=@METER["ElecMtrInitYes"].H.BT / kw_to_btuh ReportCol colhead="NoSOE" colWid=6 colVal=@BATTERY["BatteryInitNo"].soe ReportCol colhead="NoEgy[kWh]" colWid=10 colVal=@BATTERY["BatteryInitNo"].energy ReportCol colhead="NoBT[kW]" colWid=8 colVal=@METER["ElecMtrInitNo"].H.BT / kw_to_btuh + ReportCol colhead="YesSOE" colWid=6 colVal=@BATTERY["BatteryInitYes"].soe + ReportCol colhead="YesEgy[kWh]" colWid=11 colVal=@BATTERY["BatteryInitYes"].energy + ReportCol colhead="YesBT[kW]" colWid=9 colVal=@METER["ElecMtrInitYes"].H.BT / kw_to_btuh DELETE REPORT "EB" diff --git a/test/pv_bt_test.cse b/test/pv_bt_test.cse index c1b934c02..543581a0f 100644 --- a/test/pv_bt_test.cse +++ b/test/pv_bt_test.cse @@ -60,7 +60,6 @@ GAIN "BuildingLoadDefault" gnPower = import(Data,"HouseLoad_kW") * kw_to_btuh BATTERY "BatteryDefault" btMeter = ElecMtrDefault - btEndUse = BT btMaxCap = 16.320 // kWh btMaxChgPwr = max_bt_pwr // kW btMaxDschgPwr = max_bt_pwr // kW diff --git a/test/ref-macos64-appleclang/ASHPPKGROOM.REP b/test/ref-macos64-appleclang/ASHPPKGROOM.REP index 2235ee42c..9432854e3 100644 --- a/test/ref-macos64-appleclang/ASHPPKGROOM.REP +++ b/test/ref-macos64-appleclang/ASHPPKGROOM.REP @@ -443,1569 +443,7 @@ Energy Balance (F, kBtu, + into the zone) for Fri 10-Jul ! Log for Run 001: -CULT Input Tables -================= - - -Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 4096 0 0 0 nz 0 nz nz - doAutoSize 6 3 0 0 1 16 nz 0 0 0 - doMainSim 6 4 0 0 1 16 nz 0 0 0 - begDay 6 5 0 0 1 28672 nz 0 0 0 - endDay 6 6 0 0 1 28672 nz 0 0 0 - jan1DoW 6 8 16384 0 1 16 nz 0 0 0 - wuDays 6 10 16384 0 1 1 nz 0 0 0 - nSubSteps 6 11 16384 0 1 1 nz 0 0 0 - nSubhrTicks 6 181 0 0 1 1 0 0 0 0 - wfName 6 12 16392 0 3 4 0 0 0 0 - TDVfName 6 13 0 0 3 4 0 0 0 0 - elevation 6 14 0 0 3 2 0 0 0 0 - refTemp 6 15 0 0 3 2 0 60 0 0 - refRH 6 16 0 0 3 2 0 0.6 0 0 - grndRefl 6 17 0 0 355 2 0 0.2 0 0 - grndEmit 6 18 0 0 1 2 0 0.8 0 0 - grndRf 6 19 0 0 1 2 0 0.1 0 0 - soilDiff 6 20 0 0 1 2 0 0.025 0 0 - soilCond 6 21 0 0 1 2 0 1 0 0 - soilSpHt 6 22 0 0 1 2 0 0.1 0 0 - soilDens 6 23 0 0 1 2 0 115 0 0 - farFieldWidth 6 24 0 0 1 2 0 130 0 0 - deepGrndCnd 6 25 0 0 1 16 nz 0 0 0 - deepGrndDepth 6 26 0 0 1 2 0 130 0 0 - deepGrndT 6 27 0 0 739 2 0 50 0 0 - tol 6 28 0 0 1 2 0 0.001 0 0 - humTolF 6 29 0 0 1 2 0 0.0001 0 0 - unMetTzTol 6 35 0 0 1 2 0 1 0 0 - unMetTzTolWarnHrs 6 36 0 0 1 2 0 150 0 0 - ebTolMon 6 30 16384 0 1 2 0 0.0001 0 0 - ebTolDay 6 31 16384 0 1 2 0 0.0001 0 0 - ebTolHour 6 32 16384 0 1 2 0 0.0001 0 0 - ebTolSubhr 6 33 16384 0 1 2 0 0.0001 0 0 - grndMinDim 6 37 0 0 1 2 0 0.066 0 0 - grndMaxGrthCoeff 6 38 0 0 1 2 0 1.5 0 0 - grndTimeStep 6 39 0 0 1 16 nz 0 0 0 - AWTrigT 6 40 0 0 1 2 0 1 0 0 - AWTrigSlr 6 41 0 0 1 2 0 0.05 0 0 - AWTrigH 6 42 0 0 1 2 0 0.1 0 0 - ANTolAbs 6 43 0 0 1 2 0 0.00125 0 0 - ANTolRel 6 44 0 0 1 2 0 0.0001 0 0 - ANPressWarn 6 45 0 0 1 2 0 10 0 0 - ANPressErr 6 46 0 0 1 2 0 30 0 0 - bldgAzm 6 47 0 0 1 2 0 0 0 0 - skymodel 6 48 16384 0 1 16 nz 0 0 0 - skymodelLW 6 49 0 0 1 16 nz 0 0 0 - exShadeModel 6 50 0 0 1 16 nz 0 0 0 - slrInterpMeth 6 51 0 0 1 16 nz 0 0 0 - humMeth 6 52 0 0 1 16 nz 0 0 0 - dflExH 6 53 0 0 1 2 0 2.64 0 0 - workDayMask 6 54 0 0 1 1 nz 0 0 0 - DT 6 55 16384 0 1 16 nz 0 0 0 - DTbegDay 6 56 0 0 1 28672 0 0 0 0 - DTendDay 6 57 0 0 1 28672 0 0 0 0 - terrainClass 6 60 0 0 1 1 nz 0 0 0 - windSpeedMin 6 58 0 0 1 2 0 0.5 0 0 - windF 6 59 0 0 1 2 0 1 0 0 - radBeamF 6 61 0 0 1 2 0 1 0 0 - radDiffF 6 62 0 0 1 2 0 1 0 0 - hConvMod 6 65 0 0 1 16 nz 0 0 0 - verbose 6 66 0 0 1 1 nz 0 0 0 - dbgPrintMask 6 67 0 0 739 32 0 0 0 0 - dbgPrintMaskC 6 68 16384 0 1 32 0 0 0 0 - dbgFlag 6 69 0 0 1763 32 0 0 0 0 - doCoverage 6 70 0 0 1 16 nz 0 0 0 - ventAvail 6 63 0 0 739 16 nz 0 0 0 - auszTol 6 71 0 0 1 2 0 0.005 0 0 - heatDsTDbO 6 72 16384 0 739 2 0 0 0 0 - heatDsTWbO 6 73 0 0 739 2 0 0 0 0 - coolDsMo 6 74 128 0 1 1 0 0 nz 0 - coolDsDay 6 87 16512 0 1 28672 0 0 nz 0 - coolDsCond 6 100 128 0 1 8192 DESCOND 0 0 nz 0 - runSerial 6 119 0 0 1 1 0 0 0 0 - runTitle 6 120 0 0 1 4 0 0 0 0 - repHdrL 6 127 16384 0 1 4 0 0 0 0 - repHdrR 6 128 0 0 1 4 0 0 0 0 - repCpl 6 129 0 0 1 1 nz 0 0 0 - repLpp 6 130 0 0 1 1 nz 0 0 0 - repTopM 6 131 0 0 1 1 nz 0 0 0 - repBotM 6 132 0 0 1 1 nz 0 0 0 - repTestPfx 6 133 0 0 1 4 0 0 0 0 - ck5aa5 6 288 4 0 0 1 nz 0 0 0 - material 5 0 16400 0 0 0 material 0 0 db6dd914 0 - construction 5 0 16400 0 0 0 construction 0 0 24926b4c 0 - foundation 5 0 16 0 0 0 foundation 0 0 b6db8fcc 0 - glazeType 5 0 16 0 0 0 glazeType 0 0 220e 0 - zone 5 0 16400 0 0 0 zone 0 0 4924b330 0 - izXfer 5 0 16384 0 0 0 izXfer 0 0 9249451a 0 - afmeter 5 0 16 0 0 0 AFMETER 0 0 b6db8d9c 0 - loadmeter 5 0 16 0 0 0 LOADMETER 0 0 1fe2 0 - rsys 5 0 16400 0 0 0 RSYS 0 0 2492696c 0 - doas 5 0 16 0 0 0 doas 0 0 9249454c 0 - dhwdayuse 5 0 16 0 0 0 DHWDayUse 0 0 4924b21a 0 - dhwmeter 5 0 16 0 0 0 DHWMETER 0 0 6db6fb56 0 - dhwsys 5 0 0 0 0 0 DHWSYS 0 0 b6db8d04 0 - dhwsolarsys 5 0 16 0 0 0 DHWSolarSys 0 0 1ef0 0 - pvarray 5 0 0 0 0 0 PVArray 0 0 1ee0 0 - battery 5 0 0 0 0 0 Battery 0 0 1ecc 0 - shadex 5 0 0 0 0 0 SHADEX 0 0 4924b106 0 - airHandler 5 0 16 0 0 0 airHandler 0 0 9249434a 0 - meter 5 0 16400 0 0 0 meter 0 0 24926a76 0 - gain 5 0 32 0 0 0 gain 0 0 6db6fcb8 0 - reportCol 5 0 32 0 0 0 reportCol 0 0 6db6fca8 0 - exportCol 5 0 32 0 0 0 exportCol 0 0 6db6fc9e 0 - report 5 0 32 0 0 0 report 0 0 b6db8ede 0 - export 5 0 32 0 0 0 export 0 0 b6db8ec8 0 - reportfile 5 0 0 0 0 0 reportFile 0 0 20fc 0 - exportfile 5 0 0 0 0 0 exportFile 0 0 4924b33e 0 - importfile 5 0 16 0 0 0 importFile 0 0 4924b338 0 - heatPlant 5 0 16 0 0 0 heatPlant 0 0 db6dd4f6 0 - coolPlant 5 0 16 0 0 0 coolPlant 0 0 24926710 0 - towerPlant 5 0 16 0 0 0 towerPlant 0 0 24926702 0 - holiday 5 0 16 0 0 0 holiday 0 0 6db6f92c 0 - descond 5 0 16 0 0 0 DESCOND 0 0 6db6f924 0 - inverse 5 0 16 0 0 0 Inverse 0 0 b6db8b60 0 - run 12 0 0 0 0 0 0 0 0 nz - clear 9 0 4096 0 0 0 nz 0 nz 0 - - -material Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - matThk 6 2 8192 0 1 2 0 -1 0 0 - matCond 6 3 16392 0 1 2 0 0 0 0 - matCondT 6 4 0 0 1 2 0 70 0 0 - matCondCT 6 5 0 0 1 2 0 0 0 0 - matSpHt 6 6 16384 0 1 2 0 0 0 0 - matDens 6 7 16384 0 1 2 0 0 0 0 - matRNom 6 8 0 0 1 2 0 -1 0 0 - endMaterial 13 0 0 0 0 0 0 0 0 0 - - -construction Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - conU 6 2 0 0 1 2 0 0 0 0 - layer 5 0 16384 0 0 0 layer 0 0 8 0 - endConstruction 13 0 0 0 0 0 0 0 0 0 - - -layer Parent: construction - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - lrCon 6 1 5 0 0 12288 construction 0 0 0 0 - lrThk 6 2 16384 0 1 2 0 0 0 0 - lrMat 6 3 16392 0 1 8192 material 0 0 0 0 - lrFrmMat 6 4 0 0 1 8192 material 0 0 0 0 - lrFrmFrac 6 5 0 0 1 2 0 0 0 0 - endLayer 13 0 0 0 0 0 0 0 0 0 - - -foundation Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - fdWlHtAbvGrd 6 2 0 0 1 2 0 0 0 0 - fdWlDpBlwSlb 6 3 0 0 1 2 0 0 0 0 - fdFtCon 6 4 0 0 1 8192 construction 0 0 0 0 - fndblock 5 0 0 0 0 0 foundationBlock 0 0 b6db6dc4 0 - endFoundation 13 0 0 0 0 0 0 0 0 0 - - -fndblock Parent: foundation - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - fbFnd 6 1 5 0 0 12288 foundation 0 0 0 0 - fbMat 6 2 8 0 1 8192 material 0 0 0 0 - fbX1Ref 6 3 0 0 1 16 nz 0 0 0 - fbZ1Ref 6 4 0 0 1 16 nz 0 0 0 - fbX1 6 5 0 0 1 2 0 0 0 0 - fbZ1 6 6 0 0 1 2 0 0 0 0 - fbX2Ref 6 7 0 0 1 16 nz 0 0 0 - fbZ2Ref 6 8 0 0 1 16 nz 0 0 0 - fbX2 6 9 0 0 1 2 0 0 0 0 - fbZ2 6 10 0 0 1 2 0 0 0 0 - endFndBlock 13 0 0 0 1 0 0 0 0 0 - - -glazeType Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - gtSHGC 6 2 8 0 1 2 0 0 0 0 - gtSMSO 6 3 0 0 355 2 0 1 0 0 - gtSMSC 6 4 0 0 355 2 0 0 0 0 - gtFMult 6 5 0 0 0 2 0 1 0 0 - gtPySHGC 6 7 128 0 1 2 0 0 nz 0 - gtDMSHGC 6 12 0 0 1 2 0 0 0 0 - gtDMRBSol 6 13 0 0 1 2 0 0 0 0 - gtU 6 14 0 0 1 2 0 0 0 0 - gtUNFRC 6 15 0 0 1 2 0 0 0 0 - gtModel 6 17 0 0 1 16 nz 0 0 0 - gtNGlz 6 16 0 0 1 1 nz 0 0 0 - gtExShd 6 18 0 0 1 16 nz 0 0 0 - gtInShd 6 19 0 0 1 16 nz 0 0 0 - gtDirtLoss 6 20 0 0 1 2 0 0 0 0 - endGlazeType 13 0 0 0 1 0 0 0 0 0 - - -zone Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - znModel 6 2 24576 0 1 16 nz 0 0 0 - znArea 6 3 16392 0 1 2 0 0 0 0 - znVol 6 4 16392 0 1 2 0 0 0 0 - znFloorZ 6 5 0 0 1 2 0 0 0 0 - znCeilingHt 6 6 0 0 1 2 0 0 0 0 - znCAir 6 7 16384 0 1 2 0 0 0 0 - znHIRatio 6 9 0 0 1 2 0 1 0 0 - znAzm 6 10 0 0 1 2 0 0 0 0 - znSC 6 12 0 0 739 2 0 0 0 0 - znTH 6 13 0 0 1763 2 0 0 0 0 - znTD 6 14 0 0 1763 2 0 -1 0 0 - znTC 6 15 0 0 1763 2 0 0 0 0 - znQMxH 6 16 0 0 739 2 0 0 0 0 - znQMxHRated 6 17 1024 0 1 2 0 0 0 0 - znQMxC 6 18 0 0 739 2 0 0 0 0 - znQMxCRated 6 19 0 0 1 2 0 0 0 0 - znRsys 6 21 0 0 1 8192 RSYS 0 0 0 0 - znLoadMtr 6 20 0 0 1 8192 LOADMETER 0 0 0 0 - znHcFrcF 6 22 0 0 739 2 0 0.2 0 0 - znHcAirX 6 23 0 0 1763 2 0 1 0 0 - infAC 6 57 16384 0 739 2 0 0.5 0 0 - infELA 6 58 16384 0 739 2 0 0 0 0 - infShld 6 59 16384 0 1 1 nz 0 0 nz - infStories 6 60 0 0 1 1 nz 0 0 nz - znEaveZ 6 61 0 0 1 2 0 8 0 0 - znWindFLkg 6 62 0 0 1763 2 0 1 0 0 - znAFMtr 6 63 0 0 1 8192 AFMETER 0 0 0 0 - xfanFOn 6 25 0 0 739 2 0 1 0 0 - xfanVfDs 6 27 0 0 1 2 0 0 0 0 - xfanPress 6 31 0 0 1 2 0 0.3 0 0 - xfanEff 6 32 0 0 1 2 0 0.08 0 0 - xfanShaftBhp 6 33 0 0 1 2 0 0 0 0 - xfanElecPwr 6 34 0 0 1 2 0 0 0 0 - xfanMtr 6 44 0 0 1 8192 meter 0 0 0 0 - xfanType 6 26 4 0 0 16 nz 0 0 0 - xfanVfMxF 6 30 4 0 0 2 0 1 0 0 - xfanMotPos 6 37 4 0 0 16 nz 0 0 0 - xfanCurvePy 6 38 132 0 1 2 0 0 nz 0 - xfanMotEff 6 36 4 0 0 2 0 1 0 0 - surface 5 0 16384 0 0 0 surface 0 0 4924930e 0 - perimeter 5 0 0 0 0 0 perimeter 0 0 9249252c 0 - terminal 5 0 0 0 0 0 terminal 0 0 db6db76c 0 - gain 5 0 0 0 0 0 gain 0 0 24924988 0 - endZone 13 0 0 0 0 0 0 0 0 0 - - -surface Parent: zone - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - sfXtype 6 2 4 0 0 1 nz 0 0 0 - sfZone 6 1 5 0 0 12288 zone 0 0 0 0 - sfType 6 214 16392 0 0 16 0 0 0 0 - sfArea 6 211 16392 0 1 2 0 0 0 0 - sfTilt 6 5 0 0 1 2 0 0 0 0 - sfAzm 6 4 16384 0 1 2 0 0 0 0 - sfModel 6 11 16384 0 0 16 nz 0 0 0 - sfDepthBG 6 9 0 0 1 2 0 0 0 0 - sfHeight 6 10 0 0 1 2 0 0 0 0 - sfCon 6 213 16384 0 1 8192 construction 0 0 0 0 - sfU 6 212 0 0 1 2 0 0 0 0 - sfLThkF 6 13 0 0 1 2 0 0.5 0 0 - sfInH 6 148 0 0 1 2 0 1.5 0 0 - sfExH 6 150 0 0 1 2 0 1.5 0 0 - sfExCnd 6 145 16384 0 0 16 nz 0 0 0 - sfExT 6 146 0 0 1763 2 0 0 0 0 - sfExT 6 146 0 0 739 2 0 0 0 0 - sfExAbs 6 77 0 0 355 2 0 0.5 0 0 - sfExRf 6 151 0 0 1 2 0 1 0 0 - sfInAbs 6 17 0 0 355 2 0 0.5 0 0 - sfExEpsLW 6 79 0 0 1 2 0 0.9 0 0 - sfInEpsLW 6 19 0 0 1 2 0 0.9 0 0 - sfExHcModel 6 119 0 0 0 16 nz 0 0 0 - sfExHcLChar 6 120 0 0 1 2 0 10 0 0 - sfExHcMult 6 88 0 0 1763 2 0 1 0 0 - sfFnd 6 215 0 0 1 8192 foundation 0 0 0 0 - sfExpPerim 6 217 0 0 1 2 0 0 0 0 - sfFndFloor 6 216 0 0 1 8192 surface 0 0 0 0 - sfExCTaDbAvgYr 6 125 0 0 1 2 0 0 0 0 - sfExCTaDbAvg31 6 126 0 0 1 2 0 0 0 0 - sfExCTaDbAvg14 6 127 0 0 1 2 0 0 0 0 - sfExCTaDbAvg07 6 128 0 0 1 2 0 0 0 0 - sfExCTGrnd 6 129 0 0 1 2 0 0 0 0 - sfExRConGrnd 6 131 0 0 1 2 0 0 0 0 - sfInHcModel 6 59 0 0 0 16 nz 0 0 0 - sfInHcMult 6 28 0 0 1763 2 0 1 0 0 - sfAdjZn 6 147 0 0 1 8192 zone 0 0 0 0 - sfGrndRefl 6 152 0 0 355 2 0 0 0 0 - window 5 0 0 0 0 0 window 0 0 b6db6df0 0 - door 5 0 0 0 0 0 door 0 0 16 0 - endSurface 13 0 0 0 0 0 0 0 0 0 - - -window Parent: surface - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - gzXtype 6 2 4 0 0 1 nz 0 0 0 - gzSurf 6 1 5 0 0 12288 surface 0 0 0 0 - wnArea 6 211 16384 0 1 2 0 0 0 0 - wnWidth 6 218 16392 0 1 2 0 0 0 0 - wnHeight 6 219 16392 0 1 2 0 0 0 0 - wnMult 6 220 16384 0 1 2 0 1 0 0 - wnGt 6 14 0 0 1 8192 glazeType 0 0 0 0 - wnSHGC 6 138 16384 0 1 2 0 0 0 0 - wnFMult 6 139 16384 0 1 2 0 1 0 0 - wnUNFRC 6 140 16384 0 1 2 0 0 0 0 - wnModel 6 137 16384 0 0 16 nz 0 0 0 - wnNGlz 6 141 16384 0 1 1 nz 0 0 0 - wnExShd 6 142 16384 0 1 16 nz 0 0 0 - wnInShd 6 143 16384 0 1 16 nz 0 0 0 - wnDirtLoss 6 144 16384 0 1 2 0 0 0 0 - wnU 6 212 0 0 1 2 0 0 0 0 - wnInH 6 148 0 0 1 2 0 10000 0 0 - wnExH 6 150 0 0 1 2 0 0 0 0 - wnExEpsLW 6 79 0 0 1 2 0 0.84 0 0 - wnInEpsLW 6 19 0 0 1 2 0 0.84 0 0 - wnExHcModel 6 119 0 0 0 16 nz 0 0 0 - wnExHcLChar 6 120 0 0 1 2 0 10 0 0 - wnExHcMult 6 88 0 0 1763 2 0 1 0 0 - wnInHcModel 6 59 0 0 0 16 nz 0 0 0 - wnInHcMult 6 28 0 0 1763 2 0 1 0 0 - wnSMSO 6 15 0 0 355 2 0 1 0 0 - wnSMSC 6 16 0 0 355 2 0 0 0 0 - wnGrndRefl 6 152 0 0 355 2 0 0 0 0 - wnVfSkyDf 6 153 0 0 355 2 0 0 0 0 - wnVfGrndDf 6 154 0 0 355 2 0 0 0 0 - sgdist 5 0 0 0 0 0 sgdist 0 0 18 0 - shade 5 0 0 0 0 0 shade 0 0 10 0 - endWindow 13 0 0 0 0 0 0 0 0 0 - - -sgdist Parent: window - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 12288 0 0 0 0 0 nz 0 - sgWindow 6 1 5 0 0 12288 window 0 0 0 0 - sgSurf 6 4 8 0 1 8192 surface 0 0 0 0 - sgSide 6 2 0 0 1 16 0 0 0 0 - sgFSO 6 5 8 0 355 2 0 0 0 0 - sgFSC 6 6 0 0 355 2 0 0 0 0 - endSgdist 13 0 0 0 0 0 0 0 0 0 - - -shade Parent: window - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - shWindow 6 1 8197 0 0 12288 window 0 0 0 0 - ohDepth 6 4 0 0 355 2 0 0 0 0 - ohDistUp 6 5 0 0 355 2 0 0 0 0 - ohExL 6 6 0 0 355 2 0 0 0 0 - ohExR 6 7 0 0 355 2 0 0 0 0 - ohFlap 6 8 0 0 355 2 0 0 0 0 - lfDepth 6 9 0 0 355 2 0 0 0 0 - lfTopUp 6 10 0 0 355 2 0 0 0 0 - lfDistL 6 11 0 0 355 2 0 0 0 0 - lfBotUp 6 12 0 0 355 2 0 0 0 0 - rfDepth 6 13 0 0 355 2 0 0 0 0 - rfTopUp 6 14 0 0 355 2 0 0 0 0 - rfDistR 6 15 0 0 355 2 0 0 0 0 - rfBotUp 6 16 0 0 355 2 0 0 0 0 - endShade 13 0 0 0 0 0 0 0 0 0 - - -door Parent: surface - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - drXtype 6 2 4 0 0 1 nz 0 0 0 - drSurf 6 1 5 0 0 12288 surface 0 0 0 0 - drArea 6 211 16392 0 1 2 0 0 0 0 - drModel 6 11 0 0 1 16 nz 0 0 0 - drCon 6 213 0 0 1 8192 construction 0 0 0 0 - drU 6 212 16384 0 1 2 0 0 0 0 - drLThkF 6 13 0 0 1 2 0 0.5 0 0 - drInH 6 148 0 0 1 2 0 0 0 0 - drExH 6 150 0 0 1 2 0 0 0 0 - drExAbs 6 77 0 0 355 2 0 0.5 0 0 - drExRf 6 151 0 0 1 2 0 1 0 0 - drInAbs 6 17 0 0 355 2 0 0.5 0 0 - drExEpsLW 6 79 0 0 1 2 0 0.9 0 0 - drInEpsLW 6 19 0 0 1 2 0 0.9 0 0 - drExHcModel 6 119 0 0 0 16 nz 0 0 0 - drExHcLChar 6 120 0 0 1 2 0 10 0 0 - drExHcMult 6 88 0 0 1763 2 0 1 0 0 - drInHcModel 6 59 0 0 0 16 nz 0 0 0 - drInHcMult 6 28 0 0 1763 2 0 1 0 0 - endDoor 13 0 0 0 0 0 0 0 0 0 - - -perimeter Parent: zone - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - * 3 0 0 0 0 0 0 0 0 0 - prZone 6 1 5 0 0 8192 zone 0 0 0 0 - prXtype 6 2 4 0 0 1 nz 0 0 0 - prXExCnd 6 145 4 0 0 16 nz 0 0 0 - prLen 6 210 8 0 1 2 0 0 0 0 - prF2 6 211 8 0 1 2 0 0 0 0 - endPerimeter 13 0 0 0 0 0 0 0 0 0 - - -terminal Parent: zone - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 12288 0 0 0 0 0 nz 0 - tuZone 6 1 5 0 0 12288 zone 0 0 0 0 - tuTLh 6 68 0 0 739 2 0 0 0 0 - tuQMnLh 6 69 0 0 739 2 0 0 0 0 - tuQMxLh 6 70 0 0 739 2 0 0 0 0 - tuPriLh 6 71 0 0 3 1 nz 0 0 0 - tuLhNeedsFlow 6 72 0 0 3 16 nz 0 0 0 - tuhcType 6 73 0 0 3 16 nz 0 0 0 - tuhcCaptRat 6 75 1024 0 3 2 0 0 0 0 - tuhcFxCap 6 3 0 0 3 2 0 1.1 0 0 - tuhcHeatplant 6 99 0 0 1 8192 heatPlant 0 0 0 0 - tuhcMtr 6 80 0 0 1 8192 meter 0 0 0 0 - tuTH 6 104 0 0 739 2 0 0 0 0 - tuTC 6 105 0 0 739 2 0 0 0 0 - tuVfMn 6 106 1024 0 739 2 0 0 0 0 - tuAh 6 109 0 0 1 8192 airHandler 0 0 0 0 - tuVfMxH 6 110 1024 0 739 2 0 0 0 0 - tuVfMxC 6 113 1024 0 739 2 0 0 0 0 - tuVfDs 6 116 0 0 3 2 0 0 0 0 - tuVfMxHC 6 2 0 0 3 16 nz 0 0 0 - tuFxVfHC 6 4 0 0 3 2 0 1.1 0 0 - tuPriH 6 117 0 0 3 1 nz 0 0 0 - tuPriC 6 118 0 0 3 1 nz 0 0 0 - tuSRLeak 6 119 0 0 3 2 0 0.05 0 0 - tuSRLoss 6 120 0 0 3 2 0 0.1 0 0 - tfanSched 6 121 0 0 739 16 nz 0 0 0 - tfanOffLeak 6 122 0 0 3 2 0 0.1 0 0 - tfanType 6 123 0 0 3 16 nz 0 0 0 - tfanVfDs 6 124 0 0 3 2 0 0 0 0 - tfanPress 6 128 0 0 3 2 0 0.3 0 0 - tfanEff 6 129 0 0 3 2 0 0.08 0 0 - tfanMtr 6 141 0 0 1 8192 meter 0 0 0 0 - tfanVfMxF 6 127 4 0 0 2 0 1 0 0 - tfanMotPos 6 134 4 0 0 16 nz 0 0 0 - tfanCurvePy 6 135 128 0 3 2 0 0 nz 0 - tfanMotEff 6 133 4 0 0 2 0 1 0 0 - endTerminal 13 0 0 0 0 0 0 0 0 0 - - -gain Parent: zone - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - gnZone 6 1 2 0 1 8192 zone 0 0 0 0 - gnPower 6 2 16392 0 739 2 0 0 0 0 - gnMeter 6 3 16384 0 1 8192 meter 0 0 0 0 - gnEndUse 6 4 16384 0 3 16 0 0 0 0 - gnFrLat 6 5 0 0 739 2 0 0 0 0 - gnFrRad 6 6 0 0 739 2 0 0 0 0 - gnFrZn 6 7 16384 0 739 2 0 1 0 0 - gnFrPl 6 8 0 0 739 2 0 0 0 0 - gnFrRtn 6 9 0 0 739 2 0 0 0 0 - gnDlFrPow 6 10 0 0 739 2 0 1 0 0 - gnCtrlDHWSYS 6 11 0 0 1 8192 DHWSYS 0 0 0 0 - gnCtrlDHWMETER 6 12 0 0 1 8192 DHWMETER 0 0 0 0 - gnCtrlDHWEndUse 6 13 0 0 1 16 nz 0 0 0 - endGain 13 0 0 0 0 0 0 0 0 0 - - -izXfer Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - izZn1 6 2 16392 0 1 8192 zone 0 0 0 0 - izZn2 6 3 0 0 1 8192 zone 0 0 0 0 - izDOAS 6 4 0 0 1 8192 doas 0 0 0 0 - izHConst 6 5 0 0 739 2 0 0 0 0 - izNVType 6 6 16384 0 1 16 nz 0 0 0 - izAFCat 6 7 0 0 1 16 0 0 0 0 - izLinkedFlowMult 6 24 0 0 1 2 0 1 0 0 - izALo 6 10 16384 0 739 2 0 0 0 0 - izAHi 6 11 0 0 739 2 0 0 0 0 - izL1 6 12 0 0 1 2 0 0 0 0 - izL2 6 13 0 0 1 2 0 0 0 0 - izStairAngle 6 15 0 0 1 2 0 34 0 0 - izHD 6 14 16384 0 1 2 0 0 0 0 - izNVEff 6 16 16384 0 1 2 0 0.8 0 0 - izCpr 6 18 16384 0 1 2 0 0 0 0 - izExp 6 17 16384 0 1 2 0 0.5 0 0 - izVfMin 6 19 0 0 1763 2 0 0 0 0 - izVfMax 6 20 0 0 1763 2 0 0 0 0 - izTEx 6 21 0 0 1763 2 0 0 0 0 - izWEx 6 22 0 0 1763 2 0 0 0 0 - izWindSpeed 6 23 0 0 1763 2 0 0 0 0 - izASEF 6 25 0 0 1763 2 0 0 0 0 - izLEF 6 26 0 0 1763 2 0 0 0 0 - izSRE 6 27 0 0 1763 2 0 0 0 0 - izASRE 6 28 0 0 1763 2 0 0 0 0 - izRVFanHeatF 6 29 0 0 1763 2 0 0 0 0 - izVfExhRat 6 30 0 0 1763 2 0 1 0 0 - izEATR 6 31 0 0 1763 2 0 0 0 0 - izFanVfDs 6 33 0 0 1 2 0 0 0 0 - izFanPress 6 37 0 0 1 2 0 0.3 0 0 - izFanEff 6 38 0 0 1 2 0 0.08 0 0 - izFanShaftBhp 6 39 0 0 1 2 0 0 0 0 - izFanElecPwr 6 40 0 0 1 2 0 0 0 0 - izFanMtr 6 50 0 0 1 8192 meter 0 0 0 0 - izFanEndUse 6 51 0 0 1 16 nz 0 0 0 - izFanType 6 32 4 0 0 16 nz 0 0 0 - izFanVfMxF 6 36 4 0 0 2 0 1 0 0 - izFanMotPos 6 43 4 0 0 16 nz 0 0 0 - izFanCurvePy 6 44 128 0 1 2 0 0 nz 0 - izFanMotEff 6 42 4 0 0 2 0 1 0 0 - endIzxfer 13 0 0 0 0 0 0 0 0 0 - - -afmeter Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - endAFMETER 13 0 0 0 0 0 0 0 0 0 - - -loadmeter Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - lmtSubMeters 6 2 128 0 1 8192 LOADMETER 0 0 nz 0 - lmtSubMeterMults 6 53 128 0 1763 2 0 1 nz 0 - endLOADMETER 13 0 0 0 0 0 0 0 0 0 - - -rsys Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - rsType 6 2 16384 0 1 16 nz 0 0 0 - rsDesc 6 3 0 0 1 4 0 0 0 0 - rsPerfMap 6 4 0 0 1 16 nz 0 0 0 - rsFanTy 6 19 0 0 1 16 nz 0 0 0 - rsFanMotTy 6 28 0 0 1 16 nz 0 0 0 - rsAdjForFanHt 6 50 0 0 1 16 nz 0 0 0 - rsModeCtrl 6 226 0 0 739 16 nz 0 0 0 - rsElecMtr 6 7 16384 0 1 8192 meter 0 0 0 0 - rsFuelMtr 6 8 16384 0 1 8192 meter 0 0 0 0 - rsLoadMtr 6 9 0 0 1 8192 LOADMETER 0 0 0 0 - rsHtgLoadMtr 6 10 0 0 1 8192 LOADMETER 0 0 0 0 - rsClgLoadMtr 6 11 0 0 1 8192 LOADMETER 0 0 0 0 - rsSrcSideLoadMtr 6 12 0 0 1 8192 LOADMETER 0 0 0 0 - rsHtgSrcSideLoadMtr 6 13 0 0 1 8192 LOADMETER 0 0 0 0 - rsClgSrcSideLoadMtr 6 14 0 0 1 8192 LOADMETER 0 0 0 0 - rsTdDesH 6 69 0 0 1 2 0 50 0 0 - rsTdDesC 6 70 0 0 1 2 0 -25 0 0 - rsFxCapH 6 75 16384 0 1 2 0 1.4 0 0 - rsFxCapAuxH 6 79 16384 0 1 2 0 1 0 0 - rsFxCapC 6 77 16384 0 1 2 0 1.2 0 0 - rsAFUE 6 147 0 0 1 2 0 0 0 0 - rsCapH 6 148 1024 0 7 2 0 0 0 0 - rsCapRatCH 6 163 0 0 1 2 0 0.8 0 0 - rsHSPF 6 110 0 0 1 2 0 0 0 0 - rsCap47 6 111 17408 0 7 2 0 0 0 0 - rsCOP47 6 112 16384 0 1 2 0 0 0 0 - rsCap35 6 113 0 0 1 2 0 0 0 0 - rsCOP35 6 114 0 0 1 2 0 0 0 0 - rsCap17 6 115 0 0 1 2 0 0 0 0 - rsCOP17 6 116 0 0 1 2 0 0 0 0 - rsCap05 6 117 0 0 1 2 0 0 0 0 - rsCOP05 6 118 0 0 1 2 0 0 0 0 - rsCapRat1747 6 119 0 0 1 2 0 0 0 0 - rsCapRat9547 6 121 0 0 1 2 0 0 0 0 - rsCapRat0547 6 120 0 0 1 2 0 0 0 0 - rsloadFMin47 6 122 0 0 1 2 0 1 0 0 - rsloadFMin17 6 123 0 0 1 2 0 1 0 0 - rsloadFMin05 6 124 0 0 1 2 0 1 0 0 - rsCOPMin47 6 125 0 0 1 2 0 0 0 0 - rsCOPMin35 6 126 0 0 1 2 0 0 0 0 - rsCOPMin17 6 127 0 0 1 2 0 0 0 0 - rsCOPMin05 6 128 0 0 1 2 0 0 0 0 - rsCdH 6 129 0 0 1 2 0 0 0 0 - rsTypeAuxH 6 138 0 0 1 16 nz 0 0 0 - rsCtrlAuxH 6 139 0 0 1 16 nz 0 0 0 - rsCapAuxH 6 140 17408 0 1 2 0 0 0 0 - rsAFUEAuxH 6 142 0 0 1 2 0 1 0 0 - rsASHPLockOutT 6 145 0 0 739 2 0 -999 0 0 - rsDefrostModel 6 146 16384 0 1 16 nz 0 0 0 - rsCHDHWSYS 6 164 0 0 1 8192 DHWSYS 0 0 0 0 - rsFanPwrH 6 152 0 0 1 2 0 0.365 0 0 - rsSEER 6 171 0 0 1 2 0 0 0 0 - rsEER 6 170 16384 0 1 2 0 0 0 0 - rsCOP95 6 169 0 0 1 2 0 0 0 0 - rsCapC 6 166 17408 0 7 2 0 0 0 0 - rsCap115 6 172 0 0 1 2 0 0 0 0 - rsCOP115 6 173 0 0 1 2 0 0 0 0 - rsCap82 6 175 0 0 1 2 0 0 0 0 - rsCOP82 6 176 0 0 1 2 0 0 0 0 - rsCapRat11595 6 174 0 0 1 2 0 0.9155 0 0 - rsCapRat8295 6 177 0 0 1 2 0 1.06 0 0 - rsloadFMin115 6 178 0 0 1 2 0 1 0 0 - rsloadFMin95 6 179 0 0 1 2 0 1 0 0 - rsloadFMin82 6 180 0 0 1 2 0 1 0 0 - rsCOPMin115 6 181 0 0 1 2 0 0 0 0 - rsCOPMin95 6 182 0 0 1 2 0 0 0 0 - rsCOPMin82 6 183 0 0 1 2 0 0 0 0 - rsFChg 6 196 0 0 1 2 0 1 0 0 - rsCdC 6 189 0 0 1 2 0 0 0 0 - rsVFPerTon 6 184 16384 0 1 2 0 350 0 0 - rsFanPwrC 6 185 0 0 1 2 0 0.365 0 0 - rsSHRtarget 6 195 0 0 1763 2 0 0.7 0 0 - rsParElec 6 15 0 0 739 2 0 0 0 0 - rsParFuel 6 16 0 0 739 2 0 0 0 0 - rsFEffH 6 221 0 0 1763 2 0 1 0 0 - rsFEffAuxHBackup 6 222 0 0 1763 2 0 1 0 0 - rsFEffAuxHDefrost 6 223 0 0 1763 2 0 1 0 0 - rsFEffC 6 224 0 0 1763 2 0 1 0 0 - rsRhIn 6 190 0 0 739 2 0 0 0 0 - rsTdbOut 6 225 0 0 1763 2 0 0 0 0 - rsDSEH 6 65 0 0 739 2 0 -1 0 0 - rsDSEC 6 66 0 0 739 2 0 -1 0 0 - rsCapNomH 6 17 0 0 227 2 0 0 0 0 - rsCapNomC 6 18 0 0 227 2 0 0 0 0 - rsOAVType 6 211 0 0 1 16 nz 0 0 0 - rsOAVReliefZn 6 212 0 0 1 8192 zone 0 0 0 0 - rsOAVTDbInlet 6 213 0 0 739 2 0 0 0 0 - rsOAVTdiff 6 214 0 0 739 2 0 5 0 0 - rsOAVVfDs 6 215 0 0 1 2 0 0 0 0 - rsOAVVfMinF 6 217 0 0 1 2 0 0.2 0 0 - rsOAVFanPwr 6 216 0 0 1 2 0 0.5 0 0 - ductSeg 5 0 0 0 0 0 DuctSeg 0 0 b6db6dcc 0 - endRSYS 13 0 0 0 0 0 0 0 0 0 - - -ductSeg Parent: rsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - dsRSys 6 1 5 0 0 8192 RSYS 0 0 0 0 - dsTy 6 2 8 0 1 16 nz 0 0 0 - dsBranchLen 6 37 0 0 1 2 0 -1 0 0 - dsBranchCount 6 38 0 0 1 1 nz 0 0 0 - dsBranchCFA 6 39 0 0 1 2 nz 0 0 0 - dsAirVelDs 6 40 0 0 1 2 0 -1 0 0 - dsExArea 6 34 0 0 1 2 0 0 0 0 - dsInArea 6 41 0 0 1 2 0 0 0 0 - dsDiameter 6 35 0 0 1 2 0 0 0 0 - dsLength 6 36 0 0 1 2 0 0 0 0 - dsExCnd 6 52 0 0 0 16 nz 0 0 0 - dsAdjZn 6 6 0 0 1 8192 zone 0 0 0 0 - dsExT 6 28 0 0 1763 2 0 70 0 0 - dsEpsLW 6 5 0 0 1 2 0 0.9 0 0 - dsInsulR 6 42 0 0 1 2 0 0 0 0 - dsInsulMat 6 43 0 0 1 8192 material 0 0 0 0 - dsLeakF 6 53 0 0 1 2 0 0 0 0 - dsExH 6 15 0 0 1763 2 0 0.54 0 0 - endDuctSeg 13 0 0 0 0 0 0 0 0 0 - - -doas Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - oaSupFanVfDs 6 3 0 0 1 2 0 0 0 0 - oaSupFanPress 6 7 0 0 1 2 0 0.3 0 0 - oaSupFanEff 6 8 0 0 1 2 0 0.08 0 0 - oaSupFanShaftBhp 6 9 0 0 1 2 0 0 0 0 - oaSupFanElecPwr 6 10 0 0 1 2 0 0 0 0 - oaSupFanMtr 6 20 0 0 1 8192 meter 0 0 0 0 - oaSupFanEndUse 6 21 0 0 1 16 nz 0 0 0 - oaSupFanType 6 2 4 0 0 16 nz 0 0 0 - oaSupFanVfMxF 6 6 4 0 0 2 0 1 0 0 - oaSupFanMotPos 6 13 4 0 0 16 nz 0 0 0 - oaSupFanCurvePy 6 14 128 0 1 2 0 0 nz 0 - oaSupFanMotEff 6 12 4 0 0 2 0 1 0 0 - oaExhFanVfDs 6 34 0 0 1 2 0 0 0 0 - oaExhFanPress 6 38 0 0 1 2 0 0.3 0 0 - oaExhFanEff 6 39 0 0 1 2 0 0.08 0 0 - oaExhFanShaftBhp 6 40 0 0 1 2 0 0 0 0 - oaExhFanElecPwr 6 41 0 0 1 2 0 0 0 0 - oaExhFanMtr 6 51 0 0 1 8192 meter 0 0 0 0 - oaExhFanEndUse 6 52 0 0 1 16 nz 0 0 0 - oaExhFanType 6 33 4 0 0 16 nz 0 0 0 - oaExhFanVfMxF 6 37 4 0 0 2 0 1 0 0 - oaExhFanMotPos 6 44 4 0 0 16 nz 0 0 0 - oaExhFanCurvePy 6 45 128 0 1 2 0 0 nz 0 - oaExhFanMotEff 6 43 4 0 0 2 0 1 0 0 - oaSupTH 6 64 0 0 1763 2 0 65 0 0 - oaEIRH 6 65 0 0 1763 2 0 1 0 0 - oaCoilHMtr 6 66 0 0 1 8192 meter 0 0 0 0 - oaSupTC 6 67 0 0 1763 2 0 68 0 0 - oaEIRC 6 68 0 0 1763 2 0 1 0 0 - oaSHRtarget 6 69 0 0 1763 2 0 1 0 0 - oaCoilCMtr 6 70 0 0 1 8192 meter 0 0 0 0 - oaLoadMtr 6 71 0 0 1 8192 LOADMETER 0 0 0 0 - oaTEx 6 72 0 0 1763 2 0 0 0 0 - oaWEx 6 73 0 0 1763 2 0 0 0 0 - oaHXVfDs 6 74 0 0 1 2 0 0 0 0 - oaHXf2 6 75 0 0 1 2 0 0.75 0 0 - oaHXSenEffHDs 6 76 0 0 1 2 0 0 0 0 - oaHXSenEffHf2 6 77 0 0 1 2 0 0 0 0 - oaHXLatEffHDs 6 78 0 0 1 2 0 0 0 0 - oaHXLatEffHf2 6 79 0 0 1 2 0 0 0 0 - oaHXSenEffCDs 6 80 0 0 1 2 0 0 0 0 - oaHXSenEffCf2 6 81 0 0 1 2 0 0 0 0 - oaHXLatEffCDs 6 82 0 0 1 2 0 0 0 0 - oaHXLatEffCf2 6 83 0 0 1 2 0 0 0 0 - oaHXBypass 6 84 0 0 1 16 nz 0 0 0 - oaHXAuxPwr 6 85 0 0 1763 2 0 0 0 0 - oaHXAuxMtr 6 86 0 0 1 8192 meter 0 0 0 0 - endDOAS 13 0 0 0 0 0 0 0 0 0 - - -dhwdayuse Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wduMult 6 2 0 0 1 2 0 1 0 0 - dhwuse 5 0 0 0 0 0 DHWUse 0 0 c 0 - endDHWDAYUSE 13 0 0 0 0 0 0 0 0 0 - - -dhwuse Parent: dhwdayuse - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wuDHWDAYUSE 6 1 5 0 0 8192 DHWDayUse 0 0 0 0 - wuHWEndUse 6 2 0 0 1 16 0 0 0 0 - wuStart 6 4 8 0 739 2 0 0 0 0 - wuFlow 6 6 0 0 739 2 0 0 0 0 - wuDuration 6 5 0 0 739 2 0 1 0 0 - wuTemp 6 8 0 0 739 2 0 0 0 0 - wuHotF 6 7 0 0 739 2 0 1 0 0 - wuHeatRecEF 6 9 0 0 739 2 0 0 0 0 - wuEventID 6 3 0 0 1 1 0 0 0 0 - endDHWUSE 13 0 0 0 0 0 0 0 0 0 - - -dhwmeter Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - endDHWMETER 13 0 0 0 0 0 0 0 0 0 - - -dhwsys Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wsCentralDHWSYS 6 3 0 0 1 8192 DHWSYS 0 0 0 0 - wsLoadShareDHWSYS 6 166 0 0 1 8192 DHWSYS 0 0 0 0 - wsCalcMode 6 2 0 0 1 16 nz 0 0 0 - wsMult 6 4 0 0 1 2 0 1 0 0 - wsTInlet 6 14 0 0 739 2 0 0 0 0 - wsTInletTest 6 15 0 0 1763 2 0 0 0 0 - wsTInletDes 6 70 0 0 1 2 0 0 0 0 - wsUse 6 17 0 0 739 2 0 0 0 0 - wsUseTest 6 18 0 0 1763 2 0 0 0 0 - wsTUse 6 85 0 0 1 2 0 120 0 0 - wsTUseTest 6 86 0 0 1763 2 0 0 0 0 - wsTRLTest 6 19 0 0 1763 2 0 0 0 0 - wsVolRLTest 6 20 0 0 1763 2 0 0 0 0 - wsTSetpoint 6 87 0 0 739 2 0 120 0 0 - wsTSetpointLH 6 88 0 0 739 2 0 120 0 0 - wsTSetpointDes 6 69 0 0 1 2 0 120 0 0 - wsVolRunningDes 6 83 0 0 1 2 0 0 0 0 - wsASHPTSrcDes 6 71 0 0 1 2 0 0 0 0 - wsFxDes 6 84 0 0 1 2 0 1 0 0 - wsDRMethod 6 89 0 0 1 16 nz 0 0 0 - wsDRSignal 6 90 0 0 739 16 nz 0 0 0 - wsTargetSOC 6 92 0 0 739 2 0 0.9 0 0 - wsDayUse 6 95 0 0 227 4 0 0 0 0 - wsWHhwMtr 6 25 0 0 1 8192 DHWMETER 0 0 0 0 - wsFXhwMtr 6 26 0 0 1 8192 DHWMETER 0 0 0 0 - wsParElec 6 97 0 0 739 2 0 0 0 0 - wsSolarSys 6 9 0 0 1 8192 DHWSolarSys 0 0 0 0 - wsSDLM 6 98 0 0 1 2 0 1 0 0 - wsDSM 6 99 0 0 1 2 0 1 0 0 - wsSSF 6 100 0 0 739 2 0 0 0 0 - wsWF 6 101 0 0 739 2 0 1 0 0 - wsFaucetCount 6 161 0 0 1 1 nz 0 0 0 - wsShowerCount 6 162 0 0 1 1 nz 0 0 0 - wsBathCount 6 163 0 0 1 1 nz 0 0 0 - wsCWashrCount 6 164 0 0 1 1 nz 0 0 0 - wsDWashrCount 6 165 0 0 1 1 nz 0 0 0 - wsBranchModel 6 120 0 0 1 16 nz 0 0 0 - wsUnkDrawDurF 6 114 0 0 739 2 0 0 0 0 - wsFaucetDrawDurF 6 115 0 0 739 2 0 0 0 0 - wsShowerDrawDurF 6 116 0 0 739 2 0 0 0 0 - wsBathDrawDurF 6 117 0 0 739 2 0 0 0 0 - wsCWashrDrawDurF 6 118 0 0 739 2 0 1 0 0 - wsDWashrDurF 6 119 0 0 739 2 0 1 0 0 - wsUnkDrawWaste 6 121 0 0 739 2 0 0 0 0 - wsFaucetDrawWaste 6 122 0 0 739 2 0 0 0 0 - wsShowerDrawWaste 6 123 0 0 739 2 0 0 0 0 - wsBathDrawWaste 6 124 0 0 739 2 0 0 0 0 - wsCWashrDrawWaste 6 125 0 0 739 2 0 0 0 0 - wsDWashrDrawWaste 6 126 0 0 739 2 0 0 0 0 - wsUnkDayWasteF 6 127 0 0 1 2 0 0 0 0 - wsFaucetDayWasteF 6 128 0 0 1 2 0 0 0 0 - wsShowerDayWasteF 6 129 0 0 1 2 0 0 0 0 - wsBathDayWasteF 6 130 0 0 1 2 0 0 0 0 - wsCWashrDayWasteF 6 131 0 0 1 2 0 0 0 0 - wsDWashrDayWasteF 6 132 0 0 1 2 0 0 0 0 - wsDayWasteVol 6 133 0 0 1 2 0 0 0 0 - wsDayWasteBranchVolF 6 134 0 0 1 2 0 0 0 0 - wsDrawMaxDur 6 65 0 0 1 1 nz 0 0 0 - wsLoadMaxDur 6 67 0 0 1 1 nz 0 0 0 - wsElecMtr 6 5 0 0 1 8192 meter 0 0 0 0 - wsFuelMtr 6 6 0 0 1 8192 meter 0 0 0 0 - wsWriteDrawCSV 6 179 0 0 1 16 nz 0 0 0 - dhwheater 5 0 0 0 0 0 DHWHeater 0 0 db6db75a 0 - dhwloopheater 5 0 0 0 0 0 DHWLoopHeater 0 0 db6db75a 0 - dhwtank 5 0 0 0 0 0 DHWTank 0 0 2492496c 0 - dhwpump 5 0 0 0 0 0 DHWPump 0 0 24924960 0 - dhwloop 5 0 0 0 0 0 DHWLoop 0 0 e 0 - dhwheatrec 5 0 0 0 0 0 DHWHeatRec 0 0 db6db730 0 - endDHWSYS 13 0 0 0 0 0 0 0 0 0 - - -dhwheater Parent: dhwsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - whDHWSYS 6 1 5 0 0 8192 DHWSYS 0 0 0 0 - whMult 6 2 0 0 1 2 0 1 0 0 - whType 6 4 0 0 1 16 nz 0 0 0 - whHeatSrc 6 3 0 0 1 16 nz 0 0 0 - whZone 6 9 0 0 1 8192 zone 0 0 0 0 - whTEx 6 10 0 0 1763 2 0 70 0 0 - whResType 6 8 0 0 1 16 nz 0 0 0 - whASHPType 6 7 0 0 1 16 nz 0 0 0 - whASHPSrcZn 6 11 0 0 1 8192 zone 0 0 0 0 - whASHPSrcT 6 12 0 0 1763 2 0 70 0 0 - whASHPResUse 6 13 0 0 1 2 0 7.22 0 0 - whTankTInit 6 14 128 0 1 2 0 0 nz 0 - whTankCount 6 27 0 0 1 2 0 1 0 0 - whHeatingCap 6 28 0 0 1 2 0 0 0 0 - whVol 6 29 0 0 1 2 0 0 0 0 - whVolRunning 6 30 0 0 1 2 0 0 0 0 - whUA 6 31 0 0 1 2 0 -1 0 0 - whInsulR 6 32 0 0 1 2 0 -1 0 0 - whInHtSupply 6 33 0 0 1 2 0 0 0 0 - whInHtLoopRet 6 34 0 0 1 2 0 0 0 0 - whEF 6 35 0 0 1 2 0 0.82 0 0 - whUEF 6 37 0 0 1 2 0 0 0 0 - whStbyElec 6 59 0 0 1 2 0 4 0 0 - whRatedFlow 6 38 0 0 1 2 0 0 0 0 - whLoadCFwdF 6 52 0 0 1 2 0 1 0 0 - whAnnualFuel 6 39 0 0 1 2 0 0 0 0 - whAnnualElec 6 40 0 0 1 2 0 0 0 0 - whResHtPwr 6 60 0 0 1 2 0 4500 0 0 - whResHtPwr2 6 61 0 0 1 2 0 0 0 0 - whLDEF 6 36 0 0 1 2 0 1 0 0 - whEff 6 45 0 0 1 2 0 1 0 0 - whSBL 6 46 0 0 1 2 0 0 0 0 - whFAdjElec 6 97 0 0 1763 2 0 1 0 0 - whFAdjFuel 6 98 0 0 1763 2 0 1 0 0 - whPilotPwr 6 47 0 0 739 2 0 0 0 0 - whParElec 6 48 0 0 739 2 0 0 0 0 - whElecMtr 6 109 0 0 1 8192 meter 0 0 0 0 - whFuelMtr 6 110 0 0 1 8192 meter 0 0 0 0 - whxBUEndUse 6 111 0 0 1 16 nz 0 0 0 - endDHWHEATER 13 0 0 0 0 0 0 0 0 0 - - -dhwloopheater Parent: dhwsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - whDHWSYS 6 1 5 0 0 8192 DHWSYS 0 0 0 0 - whMult 6 2 0 0 1 2 0 1 0 0 - whType 6 4 0 0 1 16 nz 0 0 0 - whHeatSrc 6 3 0 0 1 16 nz 0 0 0 - whZone 6 9 0 0 1 8192 zone 0 0 0 0 - whTEx 6 10 0 0 1763 2 0 70 0 0 - whResType 6 8 0 0 1 16 nz 0 0 0 - whASHPType 6 7 0 0 1 16 nz 0 0 0 - whASHPSrcZn 6 11 0 0 1 8192 zone 0 0 0 0 - whASHPSrcT 6 12 0 0 1763 2 0 70 0 0 - whASHPResUse 6 13 0 0 1 2 0 7.22 0 0 - whTankTInit 6 14 128 0 1 2 0 0 nz 0 - whTankCount 6 27 0 0 1 2 0 1 0 0 - whHeatingCap 6 28 0 0 1 2 0 0 0 0 - whVol 6 29 0 0 1 2 0 0 0 0 - whVolRunning 6 30 0 0 1 2 0 0 0 0 - whUA 6 31 0 0 1 2 0 -1 0 0 - whInsulR 6 32 0 0 1 2 0 -1 0 0 - whInHtSupply 6 33 0 0 1 2 0 0 0 0 - whInHtLoopRet 6 34 0 0 1 2 0 0 0 0 - whEF 6 35 0 0 1 2 0 0.82 0 0 - whUEF 6 37 0 0 1 2 0 0 0 0 - whStbyElec 6 59 0 0 1 2 0 4 0 0 - whRatedFlow 6 38 0 0 1 2 0 0 0 0 - whLoadCFwdF 6 52 0 0 1 2 0 1 0 0 - whAnnualFuel 6 39 0 0 1 2 0 0 0 0 - whAnnualElec 6 40 0 0 1 2 0 0 0 0 - whResHtPwr 6 60 0 0 1 2 0 4500 0 0 - whResHtPwr2 6 61 0 0 1 2 0 0 0 0 - whLDEF 6 36 0 0 1 2 0 1 0 0 - whEff 6 45 0 0 1 2 0 1 0 0 - whSBL 6 46 0 0 1 2 0 0 0 0 - whFAdjElec 6 97 0 0 1763 2 0 1 0 0 - whFAdjFuel 6 98 0 0 1763 2 0 1 0 0 - whPilotPwr 6 47 0 0 739 2 0 0 0 0 - whParElec 6 48 0 0 739 2 0 0 0 0 - whElecMtr 6 109 0 0 1 8192 meter 0 0 0 0 - whFuelMtr 6 110 0 0 1 8192 meter 0 0 0 0 - whxBUEndUse 6 111 0 0 1 16 nz 0 0 0 - endDHWHEATER 13 0 0 0 0 0 0 0 0 0 - - -dhwtank Parent: dhwsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wtDHWSYS 6 1 5 0 0 8192 DHWSYS 0 0 0 0 - wtMult 6 2 0 0 1 1 nz 0 0 0 - wtVol 6 4 0 0 1 2 0 0 0 0 - wtUA 6 3 0 0 1 2 0 -1 0 0 - wtInsulR 6 5 0 0 1 2 0 12 0 0 - wtZone 6 7 0 0 1 8192 zone 0 0 0 0 - wtTEx 6 8 0 0 739 2 0 0 0 0 - wtTTank 6 6 0 0 739 2 0 0 0 0 - wtXLoss 6 9 0 0 739 2 0 0 0 0 - endDHWTANK 13 0 0 0 0 0 0 0 0 0 - - -dhwpump Parent: dhwsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wpDHWSYS 6 1 5 0 0 8192 DHWSYS 0 0 0 0 - wpMult 6 2 0 0 1 1 nz 0 0 0 - wpElecMtr 6 3 0 0 1 8192 meter 0 0 0 0 - wpPwr 6 4 0 0 739 2 0 0 0 0 - endDHWPUMP 13 0 0 0 0 0 0 0 0 0 - - -dhwloop Parent: dhwsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wlDHWSYS 6 1 5 0 0 8192 DHWSYS 0 0 0 0 - wlMult 6 2 0 0 1 1 nz 0 0 0 - wlFlow 6 4 0 0 739 2 0 6 0 0 - wlTIn1 6 6 0 0 739 2 0 130 0 0 - wlRunF 6 5 0 0 739 2 0 1 0 0 - wlFUA 6 7 0 0 1 2 0 1 0 0 - wlLossMakeupPwr 6 8 0 0 739 2 0 0 0 0 - wlLossMakeupEff 6 9 0 0 739 2 0 1 0 0 - wlElecMtr 6 10 0 0 1 8192 meter 0 0 0 0 - dhwloopSeg 5 0 0 0 0 0 DHWLoopSeg 0 0 b6db6dcc 0 - dhwloopPump 5 0 0 0 0 0 DHWLoopPump 0 0 8 0 - endDHWLOOP 13 0 0 0 0 0 0 0 0 0 - - -dhwloopSeg Parent: dhwloop - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wgDHWLOOP 6 1 5 0 0 8192 DHWLoop 0 0 0 0 - wgTy 6 52 8 0 1 16 nz 0 0 0 - wgLength 6 2 0 0 1 2 0 0 0 0 - wgSize 6 3 8 0 1 2 0 0 0 0 - wgInsulK 6 4 0 0 1 2 0 0.02167 0 0 - wgInsulThk 6 5 0 0 1 2 0 1 0 0 - wgExH 6 6 0 0 739 2 0 1.5 0 0 - wgExT 6 39 0 0 739 2 0 70 0 0 - wgFNoDraw 6 54 0 0 739 2 0 1 0 0 - dhwloopBranch 5 0 0 0 0 0 DHWLoopBranch 0 0 b6db6dc8 0 - endDHWLOOPSEG 13 0 0 0 0 0 0 0 0 0 - - -dhwloopBranch Parent: dhwloopSeg - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wbDHWLOOPSEG 6 1 5 0 0 8192 DHWLoopSeg 0 0 0 0 - wbMult 6 52 0 0 1 2 0 1 0 0 - wbLength 6 2 0 0 1 2 0 0 0 0 - wbSize 6 3 0 0 1 2 0 0 0 0 - wbInsulK 6 4 0 0 1 2 0 0.02167 0 0 - wbInsulThk 6 5 0 0 1 2 0 1 0 0 - wbFUA 6 53 0 0 1 2 0 1 0 0 - wbExH 6 6 0 0 739 2 0 1.5 0 0 - wbExCnd 6 38 0 0 1 16 nz 0 0 0 - wbAdjZn 6 10 0 0 1 8192 zone 0 0 0 0 - wbExTX 6 32 0 0 1763 2 0 70 0 0 - wbExT 6 39 0 0 739 2 0 70 0 0 - wbFlow 6 55 0 0 739 2 0 2 0 0 - wbFWaste 6 54 0 0 739 2 0 0 0 0 - endDHWLOOPBRANCH 13 0 0 0 0 0 0 0 0 0 - - -dhwloopPump Parent: dhwloop - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wlpDHWLOOP 6 1 5 0 0 8192 DHWLoop 0 0 0 0 - wlpMult 6 2 0 0 1 1 nz 0 0 0 - wlpElecMtr 6 3 0 0 1 8192 meter 0 0 0 0 - wlpPwr 6 4 0 0 739 2 0 0 0 0 - wlpLiqHeatF 6 5 0 0 739 2 0 1 0 0 - endDHWLOOPPUMP 13 0 0 0 0 0 0 0 0 0 - - -dhwheatrec Parent: dhwsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wrDHWSYS 6 1 5 0 0 8192 DHWSYS 0 0 0 0 - wrMult 6 2 0 0 1 1 nz 0 0 0 - wrType 6 4 0 0 1 16 nz 0 0 0 - wrCSARatedEF 6 8 8 0 739 2 0 0.5 0 0 - wrCountFXDrain 6 5 0 0 1 1 nz 0 0 0 - wrCountFXCold 6 6 0 0 1 1 0 0 0 0 - wrFeedsWH 6 7 0 0 1 16 nz 0 0 0 - wrTDInDiff 6 9 0 0 739 2 0 4.6 0 0 - wrTDInWarmup 6 10 0 0 739 2 0 65 0 0 - wrHWEndUse 6 3 0 0 1 16 nz 0 0 0 - endDHWHEATREC 13 0 0 0 0 0 0 0 0 0 - - -dhwsolarsys Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - swElecMtr 6 2 0 0 1 8192 meter 0 0 0 0 - swEndUse 6 3 0 0 1 16 nz 0 0 0 - swParElec 6 4 0 0 739 2 0 0 0 0 - swSCFluidSpHt 6 55 0 0 1 2 0 0.9 0 0 - swSCFluidDens 6 56 0 0 1 2 0 64 0 0 - swTankHXEff 6 42 0 0 1 2 0 0.7 0 0 - swTankTHxLimit 6 43 0 0 1 2 0 180 0 0 - swTankVol 6 35 0 0 1 2 0 0 0 0 - swTankUA 6 36 0 0 1 2 0 -1 0 0 - swTankInsulR 6 37 0 0 1 2 0 12 0 0 - swTankZone 6 38 0 0 1 8192 zone 0 0 0 0 - swTankTEx 6 39 0 0 739 2 0 0 0 0 - dhwsolarcollector 5 0 0 0 0 0 DHWSolarCollector 0 0 16 0 - endDHWSOLARSYS 13 0 0 0 0 0 0 0 0 0 - - -dhwsolarcollector Parent: dhwsolarsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - scDHWSOLARSYS 6 1 5 0 0 8192 DHWSolarSys 0 0 0 0 - scArea 6 4 8 0 1 2 0 0 0 0 - scMult 6 2 0 0 1 2 0 1 0 0 - scTilt 6 5 8 0 1 2 0 0 0 0 - scAzm 6 6 8 0 1 2 0 0 0 0 - scFRUL 6 7 0 0 1 2 0 -0.727 0 0 - scFRTA 6 8 0 0 1 2 0 0.758 0 0 - scTestMassFlow 6 9 0 0 1 2 0 14.79 0 0 - scKta60 6 11 0 0 1 2 0 0.72 0 0 - scOprMassFlow 6 10 0 0 1 2 0 0 0 0 - scPipingLength 6 12 0 0 1 2 0 0 0 0 - scPipingInsulK 6 14 0 0 1 2 0 0.02167 0 0 - scPipingInsulThk 6 15 0 0 1 2 0 1 0 0 - scPipingExH 6 16 0 0 1 2 0 1.5 0 0 - scPipingExT 6 23 0 0 739 2 0 70 0 0 - scPumpPwr 6 40 0 0 1 2 0 0 0 0 - scPumpLiqHeatF 6 42 0 0 1 2 0 1 0 0 - scPumpOnDeltaT 6 44 0 0 1 2 0 5 0 0 - scPumpOffDeltaT 6 45 0 0 1 2 0 1 0 0 - endDHWSOLARCOLLECTOR 13 0 0 0 0 0 0 0 0 0 - - -pvarray Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - pvElecMtr 6 44 0 0 1 8192 meter 0 0 0 0 - pvEndUse 6 45 0 0 1 16 nz 0 0 0 - pvDCSysSize 6 46 8 0 1 2 0 0 0 0 - pvModuleType 6 47 0 0 1 16 nz 0 0 0 - pvCoverRefrInd 6 49 0 0 1 2 0 1.3 0 0 - pvTempCoeff 6 48 0 0 1 2 0 -0.00206 0 0 - pvArrayType 6 50 0 0 1 16 nz 0 0 0 - pvTilt 6 51 0 0 739 2 0 0 0 0 - pvAzm 6 52 0 0 739 2 0 0 0 0 - pvGrndRefl 6 53 0 0 739 2 0 0.2 0 0 - pvGCR 6 54 0 0 1 2 0 0.4 0 0 - pvDCtoACRatio 6 55 0 0 1 2 0 1.2 0 0 - pvInverterEff 6 57 0 0 1 2 0 0.96 0 0 - pvSIF 6 56 0 0 1 2 0 1.2 0 0 - pvSysLosses 6 58 0 0 739 2 0 0.14 0 0 - pvMounting 6 2 0 0 1 16 nz 0 0 0 - pvVertices 6 7 128 0 1 2 0 0 nz 0 - endPVARRAY 13 0 0 0 0 0 0 0 0 0 - - -battery Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - btMeter 6 2 0 0 1 8192 meter 0 0 0 0 - btEndUse 6 3 0 0 1 16 nz 0 0 0 - btChgEff 6 9 0 0 739 2 0 0.975 0 0 - btDschgEff 6 10 0 0 739 2 0 0.975 0 0 - btMaxCap 6 6 0 0 1 2 0 6 0 0 - btInitSOE 6 7 0 0 1 2 0 1 0 0 - btInitCycles 6 8 0 0 1 2 0 0 0 0 - btMaxChgPwr 6 11 0 0 739 2 0 4 0 0 - btMaxDschgPwr 6 12 0 0 739 2 0 4 0 0 - btChgReq 6 13 0 0 743 2 0 0 0 0 - btUseUsrChg 6 4 0 0 1 16 nz 0 0 0 - btControlAlg 6 5 0 0 739 16 nz 0 0 0 - endBATTERY 13 0 0 0 0 0 0 0 0 0 - - -shadex Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - sxMounting 6 2 0 0 1 16 nz 0 0 0 - sxVertices 6 7 128 0 1 2 0 0 nz 0 - endSHADEX 13 0 0 0 0 0 0 0 0 0 - - -airHandler Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 0 - ahSched 6 164 0 0 739 16 nz 0 0 0 - ahFxVfFan 6 6 0 0 3 2 0 1.1 0 0 - sfanType 6 165 0 0 3 16 nz 0 0 0 - sfanVfDs 6 166 1032 0 3 2 0 0 0 0 - sfanVfMxF 6 169 0 0 3 2 0 1.3 0 0 - sfanPress 6 170 0 0 3 2 0 3 0 0 - sfanEff 6 171 0 0 3 2 0 0.65 0 0 - sfanShaftBhp 6 172 0 0 3 2 0 0 0 0 - sfanElecPwr 6 173 0 0 1 2 0 0 0 0 - sfanMotEff 6 175 0 0 3 2 0 0.9 0 0 - sfanMotPos 6 176 0 0 3 16 nz 0 0 0 - sfanCurvePy 6 177 128 0 3 2 0 0 nz 0 - sfanMtr 6 183 0 0 1 8192 meter 0 0 0 0 - rfanType 6 196 0 0 3 16 nz 0 0 0 - rfanVfDs 6 197 1024 0 3 2 0 0 0 0 - rfanVfMxF 6 200 0 0 3 2 0 1.3 0 0 - rfanPress 6 201 0 0 3 2 0 0.75 0 0 - rfanEff 6 202 0 0 3 2 0 0.65 0 0 - rfanShaftBhp 6 203 0 0 3 2 0 0 0 0 - rfanElecPwr 6 204 0 0 1 2 0 0 0 0 - rfanMotEff 6 206 0 0 3 2 0 0.9 0 0 - rfanMotPos 6 207 0 0 3 16 nz 0 0 0 - rfanCurvePy 6 208 128 0 3 2 0 0 nz 0 - rfanMtr 6 214 0 0 1 8192 meter 0 0 0 0 - cchCM 6 227 0 0 3 16 nz 0 0 0 - cchPMx 6 228 0 0 3 2 0 0.4 0 0 - cchPMn 6 229 0 0 3 2 0 0.04 0 0 - cchTMx 6 230 0 0 3 2 0 0 0 0 - cchTMn 6 231 0 0 3 2 0 150 0 0 - cchDT 6 232 0 0 3 2 0 20 0 0 - cchTOn 6 233 0 0 3 2 0 72 0 0 - cchTOff 6 234 0 0 3 2 0 72 0 0 - cchMtr 6 235 0 0 1 8192 meter 0 0 0 0 - ahhcType 6 242 0 0 3 16 nz 0 0 0 - ahhcSched 6 243 0 0 739 16 nz 0 0 0 - ahhcCaptRat 6 244 1024 0 739 2 0 0 0 0 - ahhcFxCap 6 4 0 0 3 2 0 1.1 0 0 - ahhcHeatplant 6 268 0 0 1 8192 heatPlant 0 0 0 0 - ahhcEffR 6 261 0 0 3 2 0 1 0 0 - ahhcEirR 6 248 0 0 739 2 0 1 0 0 - ahhcPyEi 6 262 128 0 3 2 0 0 nz 0 - ahhcStackEffect 6 267 0 0 739 2 0 0 0 0 - ahhcMtr 6 249 0 0 1 8192 meter 0 0 0 0 - ahhcAux 6 250 0 0 739 2 0 0 0 0 - ahhcAuxMtr 6 251 0 0 1 8192 meter 0 0 0 0 - ahpCap17 6 273 0 0 3 2 0 0 0 0 - ahpCapRat1747 6 274 0 0 3 2 0 0.6184 0 0 - ahpCapRat9547 6 275 0 0 1 2 0 0 0 0 - ahpCap35 6 276 0 0 3 2 0 0 0 0 - ahpFd35Df 6 277 0 0 3 2 0 0.85 0 0 - ahpCapIa 6 278 0 0 3 2 0 0.004 0 0 - ahpCapSupH 6 279 0 0 3 2 0 0 0 0 - ahpEffSupH 6 280 0 0 739 2 0 1 0 0 - ahpSupHMtr 6 281 0 0 1 8192 meter 0 0 0 0 - ahpTFrMn 6 282 0 0 3 2 0 17 0 0 - ahpTFrMx 6 283 0 0 3 2 0 47 0 0 - ahpTFrPk 6 284 0 0 3 2 0 42 0 0 - ahpDfrFMn 6 285 0 0 3 2 0 0.0222 0 0 - ahpDfrFMx 6 286 0 0 3 2 0 0.0889 0 0 - ahpDfrCap 6 287 0 0 3 2 0 0 0 0 - ahpTOff 6 288 0 0 3 2 0 5 0 0 - ahpTOn 6 289 0 0 3 2 0 12 0 0 - ahpCOP17 6 290 0 0 3 2 0 0 0 0 - ahpCOP47 6 291 0 0 3 2 0 0 0 0 - ahpInIa 6 292 0 0 3 2 0 0.004 0 0 - ahpCd 6 293 0 0 3 2 0 0.25 0 0 - ahccType 6 311 0 0 3 16 nz 0 0 0 - ahccSched 6 312 0 0 739 16 nz 0 0 0 - ahccCaptRat 6 313 1024 0 3 2 0 0 0 0 - ahccCapsRat 6 330 0 0 3 2 0 0 0 0 - ahccSHRRat 6 333 0 0 3 2 0 0.77 0 0 - ahccFxCap 6 5 0 0 3 2 0 1.1 0 0 - ahccK1 6 335 0 0 3 2 0 -0.4 0 0 - ahccMinTEvap 6 334 0 0 3 2 0 35 0 0 - ahccDsTDbCnd 6 336 0 0 3 2 0 95 0 0 - ahccDsTDbEn 6 337 0 0 3 2 0 80 0 0 - ahccDsTWbEn 6 338 0 0 3 2 0 67 0 0 - ahccVfR 6 339 0 0 3 2 0 0 0 0 - ahccVfRperTon 6 340 0 0 3 2 0 400 0 0 - ahccEirR 6 317 0 0 739 2 0 1 0 0 - ahccMinUnldPlr 6 341 0 0 3 2 0 1 nz 0 - ahccMinFsldPlr 6 342 0 0 3 2 0 1 nz 0 - pydxCaptT 6 343 128 0 3 2 0 0 nz 0 - pydxCaptF 6 350 128 0 3 2 0 0 nz 0 - pydxCaptFLim 6 355 0 0 3 2 0 1.05 0 0 - pydxEirT 6 356 128 0 3 2 0 0 nz 0 - pydxEirUl 6 363 128 0 3 2 0 0 nz 0 - ahccCoolplant 6 368 0 0 1 8192 coolPlant 0 0 0 0 - ahccGpmDs 6 369 0 0 3 2 0 0 0 0 - ahccNtuoDs 6 370 0 0 3 2 0 2 0 0 - ahccNtuiDs 6 371 0 0 3 2 0 2 0 0 - ahccBypass 6 310 0 0 739 2 0 0 0 0 - ahFanCycles 6 78 0 0 739 16 nz 0 0 0 - ahccMtr 6 318 0 0 1 8192 meter 0 0 0 0 - ahccAux 6 319 0 0 739 2 0 0 0 0 - ahccAuxMtr 6 320 0 0 1 8192 meter 0 0 0 0 - ahTsSp 6 77 0 0 739 18 0 0 0 0 - ahTsMn 6 79 0 0 739 2 0 40 0 0 - ahTsMx 6 80 0 0 739 2 0 250 0 0 - ahTsRaMn 6 81 0 0 739 2 0 0 0 0 - ahTsRaMx 6 82 0 0 739 2 0 0 0 0 - ahTsDsH 6 2 0 0 739 2 0 0 0 0 - ahTsDsC 6 3 0 0 739 2 0 0 0 0 - ahCtu 6 83 0 0 1 8192 terminal 0 0 0 0 - ahWzCzns 6 84 640 0 1 8192 zone nz 0 nz 0 - ahCzCzns 6 100 640 0 1 8192 zone nz 0 nz 0 - oaMnCtrl 6 116 0 0 3 16 nz 0 0 0 - oaMnFrac 6 117 0 0 739 2 0 1 0 0 - oaVfDsMn 6 118 0 0 3 2 0 0 0 0 - oaEcoType 6 119 0 0 3 16 nz 0 0 0 - oaLimT 6 120 0 0 739 18 nz 0 0 0 - oaLimE 6 121 0 0 739 18 0 999 0 0 - oaHXVfDs 6 125 0 0 1 2 0 0 0 0 - oaHXf2 6 126 0 0 1 2 0 0.75 0 0 - oaHXSenEffHDs 6 127 0 0 1 2 0 0 0 0 - oaHXSenEffHf2 6 128 0 0 1 2 0 0 0 0 - oaHXLatEffHDs 6 129 0 0 1 2 0 0 0 0 - oaHXLatEffHf2 6 130 0 0 1 2 0 0 0 0 - oaHXSenEffCDs 6 131 0 0 1 2 0 0 0 0 - oaHXSenEffCf2 6 132 0 0 1 2 0 0 0 0 - oaHXLatEffCDs 6 133 0 0 1 2 0 0 0 0 - oaHXLatEffCf2 6 134 0 0 1 2 0 0 0 0 - oaHXBypass 6 135 0 0 1 16 nz 0 0 0 - oaHXAuxPwr 6 136 0 0 1763 2 0 0 0 0 - oaHXAuxMtr 6 137 0 0 1 8192 meter 0 0 0 0 - oaOaLeak 6 122 0 0 3 2 0 0.05 0 0 - oaRaLeak 6 123 0 0 3 2 0 0.05 0 0 - oaZoneLeak 6 124 0 0 739 2 0 0 0 0 - ahSOLeak 6 160 0 0 3 2 0 0.01 0 0 - ahROLeak 6 161 0 0 3 2 0 0.01 0 0 - ahSOLoss 6 162 0 0 3 2 0 0.02 0 0 - ahROLoss 6 163 0 0 3 2 0 0.02 0 0 - endAirhandler 13 0 0 0 0 0 0 0 0 0 - - -meter Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - mtrRate 6 2 0 0 739 2 0 0 0 0 - mtrDemandRate 6 3 0 0 739 2 0 0 0 0 - mtrSubMeters 6 4 128 0 1 8192 meter 0 0 nz 0 - mtrSubMeterMults 6 55 128 0 739 2 0 1 nz 0 - endMeter 13 0 0 0 0 0 0 0 0 0 - - -reportCol Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 0 - colReport 6 1 1 0 1 8192 report 0 0 0 0 - colHead 6 2 16384 0 1 4 0 0 0 0 - colGap 6 3 0 0 1 1 nz 0 0 0 - colWid 6 4 16384 0 1 1 0 0 0 0 - colDec 6 5 16384 0 1 1 nz 0 0 0 - colJust 6 6 0 0 1 16 0 0 0 0 - colVal 6 7 16392 0 1771 6 0 0 0 0 - endReportcol 13 0 0 0 0 0 0 0 0 0 - - -exportCol Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 0 - colExport 6 1 1 0 1 8192 export 0 0 0 0 - colHead 6 2 0 0 1 4 0 0 0 0 - colWid 6 4 0 0 1 1 0 0 0 0 - colDec 6 5 0 0 1 1 nz 0 0 0 - colJust 6 6 0 0 1 16 0 0 0 0 - colVal 6 7 8 0 1771 6 0 0 0 0 - endExportcol 13 0 0 0 0 0 0 0 0 0 - - -report Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - rpReportfile 6 1 2 0 1 12288 reportFile 0 0 0 0 - rpZone 6 2 768 0 1 8192 zone 0 0 0 0 - rpMeter 6 3 768 0 1 8192 meter 0 0 0 0 - rpAh 6 4 768 0 1 8192 airHandler 0 0 0 0 - rpDHWMeter 6 6 512 0 1 8192 DHWMETER 0 0 0 0 - rpAFMeter 6 7 768 0 1 8192 AFMETER 0 0 0 0 - rpTu 6 5 512 0 1 8192 terminal 0 0 0 0 - rpType 6 9 16392 0 0 16 0 0 0 0 - rpFreq 6 10 16384 0 0 16 0 0 0 0 - rpDayBeg 6 11 16384 0 1 28672 0 0 0 0 - rpDayEnd 6 12 16384 0 1 28672 0 0 0 0 - rpBtuSf 6 13 0 0 1 2 0 1e+06 0 0 - rpCond 6 14 0 0 1771 32 nz 0 0 0 - rpTitle 6 15 0 0 1 4 0 0 0 0 - rpCpl 6 16 16384 0 1 1 nz 0 0 0 - rpHeader 6 17 16384 0 1 16 nz 0 0 0 - rpFooter 6 18 0 0 1 16 nz 0 0 0 - reportCol 5 0 16384 0 0 0 reportCol 0 0 b6db6dca 0 - isExport 6 8 4 0 0 1 0 0 0 0 - endReport 13 0 0 0 0 0 0 0 0 0 - - -export Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - exExportfile 6 1 2 0 1 12288 exportFile 0 0 0 0 - exZone 6 2 770 0 1 8192 zone 0 0 0 0 - exMeter 6 3 768 0 1 8192 meter 0 0 0 0 - exAh 6 4 768 0 1 8192 airHandler 0 0 0 0 - exDHWMeter 6 6 512 0 1 8192 DHWMETER 0 0 0 0 - exAFMeter 6 7 512 0 1 8192 AFMETER 0 0 0 0 - exTu 6 5 512 0 1 8192 terminal 0 0 0 0 - exType 6 9 8 0 0 16 0 0 0 0 - exFreq 6 10 0 0 0 16 0 0 0 0 - exDayBeg 6 11 0 0 1 28672 0 0 0 0 - exDayEnd 6 12 0 0 1 28672 0 0 0 0 - exBtuSf 6 13 0 0 1 2 0 1e+06 0 0 - exCond 6 14 0 0 1771 32 nz 0 0 0 - exTitle 6 15 0 0 1 4 0 0 0 0 - exHeader 6 17 0 0 1 16 nz 0 0 0 - exFooter 6 18 0 0 1 16 nz 0 0 0 - exportCol 5 0 0 0 0 0 exportCol 0 0 b6db6dd6 0 - isExport 6 8 4 0 0 1 nz 0 0 0 - endExport 13 0 0 0 0 0 0 0 0 0 - - -reportfile Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - rfFileName 6 2 8 0 1 4 0 0 0 0 - rfFileStat 6 3 0 0 0 16 nz 0 0 0 - rfPageFmt 6 4 16384 0 1 16 nz 0 0 0 - endReportFile 13 0 0 0 0 0 0 0 0 0 - report 5 0 16384 0 0 0 report 0 0 b6db6de2 0 - - -exportfile Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - xfFileName 6 2 8 0 1 4 0 0 0 0 - xfFileStat 6 3 0 0 0 16 nz 0 0 0 - endExportFile 13 0 0 0 0 0 0 0 0 0 - export 5 0 0 0 0 0 export 0 0 6db6db8a 0 - - -importfile Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - imFileName 6 2 8 0 3 4 0 0 0 0 - imTitle 6 3 0 0 3 4 0 0 0 0 - imFreq 6 4 8 0 1 16 0 0 0 0 - imHeader 6 5 0 0 3 16 nz 0 0 0 - imBinary 6 6 0 0 1 16 nz 0 0 0 - endImportFile 13 0 0 0 0 0 0 0 0 0 - - -heatPlant Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - hpSched 6 2 8192 0 739 16 nz 0 0 0 - hpPipeLossF 6 3 0 0 3 2 0 0.01 0 0 - hpStage1 6 4 640 0 1 8192 boiler 0 0 nz 0 - hpStage2 6 12 640 0 1 8192 boiler 0 0 nz 0 - hpStage3 6 20 640 0 1 8192 boiler 0 0 nz 0 - hpStage4 6 28 640 0 1 8192 boiler 0 0 nz 0 - hpStage5 6 36 640 0 1 8192 boiler 0 0 nz 0 - hpStage6 6 44 640 0 1 8192 boiler 0 0 nz 0 - hpStage7 6 52 640 0 1 8192 boiler 0 0 nz 0 - boiler 5 0 16 0 0 0 boiler 0 0 16 0 - endHeatplant 13 0 0 0 0 0 0 0 0 0 - - -boiler Parent: heatPlant - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - blrHeatplant 6 1 8197 0 0 8192 heatPlant 0 0 0 0 - blrCap 6 2 8 0 3 2 0 0 0 0 - blrEffR 6 3 0 0 3 2 0 0.8 0 0 - blrEirR 6 4 0 0 3 2 0 0 0 0 - blrPyEi 6 5 128 0 3 2 0 0 nz 0 - blrMtr 6 10 0 0 1 8192 meter 0 0 0 0 - blrpGpm 6 11 0 0 3 2 0 0 0 0 - blrpHdLoss 6 12 0 0 3 2 0 114.45 0 0 - blrpMotEff 6 13 0 0 3 2 0 0.88 0 0 - blrpHydEff 6 14 0 0 3 2 0 0.7 0 0 - blrpOvrunF 6 15 4 0 0 2 0 1.3 0 0 - blrpMtr 6 16 0 0 1 8192 meter 0 0 0 0 - blrAuxOn 6 20 0 0 739 2 0 0 0 0 - blrAuxOnMtr 6 21 0 0 1 8192 meter 0 0 0 0 - blrAuxOff 6 22 0 0 739 2 0 0 0 0 - blrAuxOffMtr 6 23 0 0 1 8192 meter 0 0 0 0 - blrAuxOnAtall 6 24 0 0 739 2 0 0 0 0 - blrAuxOnAtallMtr 6 25 0 0 1 8192 meter 0 0 0 0 - blrAuxFullOff 6 26 0 0 739 2 0 0 0 0 - blrAuxFullOffMtr 6 27 0 0 1 8192 meter 0 0 0 0 - endBoiler 13 0 0 0 0 0 0 0 0 0 - - -coolPlant Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - cpSched 6 2 8192 0 739 16 nz 0 0 0 - cpTsSp 6 3 0 0 739 2 0 44 0 0 - cpPipeLossF 6 4 0 0 3 2 0 0.01 0 0 - cpTowerplant 6 5 8 0 1 8192 towerPlant 0 0 0 0 - cpStage1 6 6 640 0 1 8192 chiller 0 0 nz 0 - cpStage2 6 14 640 0 1 8192 chiller 0 0 nz 0 - cpStage3 6 22 640 0 1 8192 chiller 0 0 nz 0 - cpStage4 6 30 640 0 1 8192 chiller 0 0 nz 0 - cpStage5 6 38 640 0 1 8192 chiller 0 0 nz 0 - cpStage6 6 46 640 0 1 8192 chiller 0 0 nz 0 - cpStage7 6 54 640 0 1 8192 chiller 0 0 nz 0 - chiller 5 0 16 0 0 0 chiller 0 0 b6db6dda 0 - endCoolplant 13 0 0 0 0 0 0 0 0 0 - - -chiller Parent: coolPlant - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - chCoolplant 6 1 8197 0 0 8192 coolPlant 0 0 0 0 - chCapDs 6 2 8 0 3 2 0 0 0 0 - chTsDs 6 3 0 0 3 2 0 44 0 0 - chTcndDs 6 4 0 0 3 2 0 85 0 0 - chPyCapT 6 5 128 0 3 2 0 0 nz 0 - chCop 6 12 0 0 3 2 0 4.2 0 0 - chEirDs 6 13 0 0 3 2 0 0 0 0 - chPyEirT 6 14 128 0 3 2 0 0 nz 0 - chPyEirUl 6 21 128 0 3 2 0 0 nz 0 - chMinUnldPlr 6 26 0 0 3 2 0 0.1 0 0 - chMinFsldPlr 6 27 0 0 3 2 0 0.1 0 0 - chMotEff 6 28 0 0 3 2 0 1 0 0 - chMtr 6 29 0 0 1 8192 meter 0 0 0 0 - chppGpm 6 30 0 0 3 2 0 0 0 0 - chppHdLoss 6 31 0 0 3 2 0 57.22 0 0 - chppMotEff 6 32 0 0 3 2 0 0.88 0 0 - chppHydEff 6 33 0 0 3 2 0 0.7 0 0 - chppOvrunF 6 34 0 0 3 2 0 1.3 0 0 - chppMtr 6 35 0 0 1 8192 meter 0 0 0 0 - chcpGpm 6 39 0 0 3 2 0 0 0 0 - chcpHdLoss 6 40 0 0 3 2 0 45.78 0 0 - chcpMotEff 6 41 0 0 3 2 0 0.88 0 0 - chcpHydEff 6 42 0 0 3 2 0 0.7 0 0 - chcpOvrunF 6 43 4 0 0 2 0 1.3 0 0 - chcpMtr 6 44 0 0 1 8192 meter 0 0 0 0 - chAuxOn 6 48 0 0 739 2 0 0 0 0 - chAuxOnMtr 6 49 0 0 1 8192 meter 0 0 0 0 - chAuxOff 6 50 0 0 739 2 0 0 0 0 - chAuxOffMtr 6 51 0 0 1 8192 meter 0 0 0 0 - chAuxOnAtall 6 52 0 0 739 2 0 0 0 0 - chAuxOnAtallMtr 6 53 0 0 1 8192 meter 0 0 0 0 - chAuxFullOff 6 54 0 0 739 2 0 0 0 0 - chAuxFullOffMtr 6 55 0 0 1 8192 meter 0 0 0 0 - endChiller 13 0 0 0 0 0 0 0 0 0 - - -towerPlant Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - ctN 6 2 8192 0 3 1 nz 0 0 0 - tpStg 6 3 0 0 3 16 nz 0 0 0 - tpTsSp 6 4 0 0 739 2 0 85 0 0 - tpMtr 6 5 0 0 1 8192 meter 0 0 0 0 - ctType 6 6 0 0 3 16 nz 0 0 0 - ctLoSpd 6 7 0 0 3 2 0 0.5 0 0 - ctShaftBhp 6 8 0 0 3 2 0 0 0 0 - ctMotEff 6 9 0 0 3 2 0 0.88 0 0 - ctFcOne 6 10 128 0 3 2 0 0 nz 0 - ctFcLo 6 13 128 0 3 2 0 0 nz 0 - ctFcHi 6 16 128 0 3 2 0 0 nz 0 - ctFcVar 6 19 128 0 3 2 0 0 nz 0 - ctCapDs 6 24 0 0 3 2 0 0 0 0 - ctVfDs 6 25 0 0 3 2 0 0 0 0 - ctGpmDs 6 26 0 0 3 2 0 0 0 0 - ctTDbODs 6 27 0 0 3 2 0 93.5 0 0 - ctTWbODs 6 28 0 0 3 2 0 78 0 0 - ctTwoDs 6 29 0 0 3 2 0 85 0 0 - ctCapOd 6 30 0 0 3 2 0 0 0 0 - ctVfOd 6 31 0 0 3 2 0 0 0 0 - ctGpmOd 6 32 0 0 3 2 0 0 0 0 - ctTDbOOd 6 33 0 0 3 2 0 93.5 0 0 - ctTWbOOd 6 34 0 0 3 2 0 78 0 0 - ctTwoOd 6 35 0 0 3 2 0 85 0 0 - ctK 6 36 0 0 3 2 0 0.4 0 0 - ctStkFlFr 6 37 0 0 3 2 0 0.18 0 0 - ctBldn 6 38 0 0 3 2 0 0.01 0 0 - ctDrft 6 39 0 0 3 2 0 0 0 0 - ctTWm 6 40 0 0 3 2 0 60 0 0 - endTowerplant 13 0 0 0 0 0 0 0 0 0 - - -holiday Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - hdDateTrue 6 2 8192 0 1 28672 0 0 0 0 - hdDateObs 6 3 0 0 1 28672 0 0 0 0 - hdOnMonday 6 4 0 0 1 16 0 0 0 0 - hdCase 6 5 0 0 1 16 0 0 0 0 - hdDow 6 6 0 0 1 16 0 0 0 0 - hdMon 6 7 0 0 1 16 0 0 0 0 - endHoliday 13 0 0 0 0 0 0 0 0 0 - - -descond Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - dcDay 6 2 8 0 1 28672 nz 0 0 0 - dcDB 6 3 8 0 1 2 0 0 0 0 - dcMCDBR 6 4 8 0 1 2 0 0 0 0 - dcMCWB 6 5 8 0 1 2 0 0 0 0 - dcMCWBR 6 6 8 0 1 2 0 0 0 0 - dcWindSpeed 6 7 8 0 1 2 0 0 0 0 - dcTauB 6 8 0 0 1 2 0 0 0 0 - dcTauD 6 9 0 0 1 2 0 0 0 0 - dcEbnSlrNoon 6 10 0 0 1 2 0 0 0 0 - dcEdhSlrNoon 6 11 0 0 1 2 0 0 0 0 - endDesCond 13 0 0 0 0 0 0 0 0 0 - - -inverse Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - ivFREQ 6 2 8 0 1 16 nz 0 0 0 - ivX0 6 3 0 0 1 2 0 0 0 0 - ivY0 6 4 0 0 1 2 0 0 0 0 - ivYTarg 6 5 8 0 1 2 0 0 0 0 - ivX 6 6 8 0 1771 2 0 0 0 0 - ivY 6 7 8 0 1771 2 0 0 0 0 - endInverse 13 0 0 0 0 0 0 0 0 0 -! CSE 0.921.0+apple-clang.ab748d58.102 for Win32 console +! CSE 0.921.0+battery-submeter.fe0a7d96.136.dirty for Win32 console @@ -2030,7 +468,6 @@ Input for Run 001: dt = "YES" heatDsTDbO = 37 coolDsDay = DD1 - dbgPrintMaskC = 4 // dump CULT tables MATERIAL "mat-Gypsum Board" matDens = 40 @@ -3568,7 +2005,7 @@ Input for Run 001: -! CSE 0.921.0+apple-clang.ab748d58.102 for Win32 console run(s) done: Wed 28-Feb-24 12:12:22 pm +! CSE 0.921.0+battery-submeter.fe0a7d96.136.dirty for Win32 console run(s) done: Wed 27-Mar-24 11:24:35 am ! Executable: /users/neal-kruis/projects/cse/builds/clion-release/cse-appleclang-64 ! ? (enExeInfo fail) (HPWH 1.23.0+HEAD.f90302f.61) @@ -3578,8 +2015,8 @@ Input for Run 001: ! Timing info -- -! Input: Time = 0.07 Calls = 2 T/C = 0.0370 -! AutoSizing: Time = 0.37 Calls = 1 T/C = 0.3690 -! Simulation: Time = 6.92 Calls = 1 T/C = 6.9200 +! Input: Time = 0.08 Calls = 2 T/C = 0.0395 +! AutoSizing: Time = 0.33 Calls = 1 T/C = 0.3330 +! Simulation: Time = 7.11 Calls = 1 T/C = 7.1140 ! Reports: Time = 0.00 Calls = 1 T/C = 0.0010 -! Total: Time = 7.37 Calls = 1 T/C = 7.3670 +! Total: Time = 7.53 Calls = 1 T/C = 7.5290 diff --git a/test/ref-macos64-appleclang/BT_TEST.REP b/test/ref-macos64-appleclang/BT_TEST.REP index 357133fef..1cca43c38 100644 --- a/test/ref-macos64-appleclang/BT_TEST.REP +++ b/test/ref-macos64-appleclang/BT_TEST.REP @@ -1,120 +1,164 @@ - - -Battery and warmup with (Yes) & without (No) btInitSOE for Thu 01-Jan - - Day Hour YesSOE YesEgy[kWh] YesBT[kW] NoSOE NoEgy[kWh] NoBT[kW] - ---------- ---------- ------ ----------- --------- ------ ---------- -------- - Thu 01-Jan 0 0.799 7.99 -0.01 0.279 2.79 -0.01 - Thu 01-Jan 1 0.798 7.98 -0.01 0.278 2.78 -0.01 - Thu 01-Jan 2 0.797 7.97 -0.01 0.277 2.77 -0.01 - Thu 01-Jan 3 0.796 7.96 -0.01 0.276 2.76 -0.01 - Thu 01-Jan 4 0.795 7.95 -0.01 0.275 2.75 -0.01 - Thu 01-Jan 5 0.794 7.94 -0.01 0.274 2.74 -0.01 - Thu 01-Jan 6 0.793 7.93 -0.01 0.273 2.73 -0.01 - Thu 01-Jan 7 0.792 7.92 -0.01 0.272 2.72 -0.01 - Thu 01-Jan 8 0.791 7.91 -0.01 0.271 2.71 -0.01 - Thu 01-Jan 9 0.79 7.9 -0.01 0.27 2.7 -0.01 - Thu 01-Jan 10 0.789 7.89 -0.01 0.269 2.69 -0.01 - Thu 01-Jan 11 0.788 7.88 -0.01 0.268 2.68 -0.01 - Thu 01-Jan 12 0.787 7.87 -0.01 0.267 2.67 -0.01 - Thu 01-Jan 13 0.786 7.86 -0.01 0.266 2.66 -0.01 - Thu 01-Jan 14 0.785 7.85 -0.01 0.265 2.65 -0.01 - Thu 01-Jan 15 0.784 7.84 -0.01 0.264 2.64 -0.01 - Thu 01-Jan 16 0.783 7.83 -0.01 0.263 2.63 -0.01 - Thu 01-Jan 17 0.782 7.82 -0.01 0.262 2.62 -0.01 - Thu 01-Jan 18 0.781 7.81 -0.01 0.261 2.61 -0.01 - Thu 01-Jan 19 0.78 7.8 -0.01 0.26 2.6 -0.01 - Thu 01-Jan 20 0.779 7.79 -0.01 0.259 2.59 -0.01 - Thu 01-Jan 21 0.778 7.78 -0.01 0.258 2.58 -0.01 - Thu 01-Jan 22 0.777 7.77 -0.01 0.257 2.57 -0.01 - Thu 01-Jan 23 0.776 7.76 -0.01 0.256 2.56 -0.01 - - - -! Log for Run 001: - -! CSE 0.920.0+main.99c64c5b.17 for Win32 console - - - -Input for Run 001: - -# #define kw_to_btuh 3412.142 -# #define max_bt_pwr 4.08 - - wuDays = 30 - WfName="Bishop.epw" // reference city for CA Climate Zone 16 - nSubSteps=1 - - // This battery should go through warm-up with a default assumption of 100% SOE - // at beginning of warmup. This battery should be initialized to the initSOE - // value at the beginning of the warmup (default of 100%). Since we don't - // explicitly see the warmup in the output reports, we should see that battery - // SOE is (10 kWh - (30 days x 24 hrs/day x 0.01 kWh/hr)) / 10 kWh = 0.28 at - // the beginning of first timestep. However, since we only report SOE at the - // END of each timestep, the first value should be 0.28 - 0.01/10.0 = 0.279 and - // decrease 0.01 each hour after that. - METER "ElecMtrInitNo" - GAIN "BuildingLoadInitNo" - gnEndUse= Lit - gnMeter = ElecMtrInitNo - gnPower = 0.01 * kw_to_btuh - BATTERY "BatteryInitNo" - btMeter = ElecMtrInitNo - btEndUse = BT - btMaxCap = 10.0 // kWh - btMaxChgPwr = 5.0 // kW - btMaxDschgPwr = 5.0 // kW - btUseUsrChg = No - btChgEff = 1.0 - btDschgEff = 1.0 - - // This battery should be initialized to the initSOE value at the beginning of - // the simulation. Since the spreadsheet shows the SOE values at the END of - // each timestep, we should see the first SOE at 0.799 (0.8 - 0.01 kWh / 10kWh) = - // 0.799), then dropping 0.001 each additional hour. - METER "ElecMtrInitYes" - GAIN "BuildingLoadInitYes" LIKE "BuildingLoadInitNo" - gnMeter = ElecMtrInitYes - BATTERY "BatteryInitYes" LIKE "BatteryInitNo" - btMeter = ElecMtrInitYes - btInitSOE = 0.8 // 80% state of energy - - REPORT - rpType = UDT - rpFreq = HOUR - rpTitle = "Battery and warmup with (Yes) & without (No) btInitSOE" - rpDayBeg = jan 1 - rpDayEnd = jan 1 - rpHeader = "Yes" - rpFooter = "No" - ReportCol colhead="Day" colVal=@Top.dateStr - ReportCol colhead="Hour" colVal=@Top.iHr - ReportCol colhead="YesSOE" colWid=6 colVal=@BATTERY["BatteryInitYes"].soe - ReportCol colhead="YesEgy[kWh]" colWid=11 colVal=@BATTERY["BatteryInitYes"].energy - ReportCol colhead="YesBT[kW]" colWid=9 colVal=@METER["ElecMtrInitYes"].H.BT / kw_to_btuh - ReportCol colhead="NoSOE" colWid=6 colVal=@BATTERY["BatteryInitNo"].soe - ReportCol colhead="NoEgy[kWh]" colWid=10 colVal=@BATTERY["BatteryInitNo"].energy - ReportCol colhead="NoBT[kW]" colWid=8 colVal=@METER["ElecMtrInitNo"].H.BT / kw_to_btuh - - DELETE REPORT "EB" - - RUN - - - -! CSE 0.920.0+main.99c64c5b.17 for Win32 console run(s) done: Mon 18-Dec-23 4:17:55 pm - -! Executable: d:\cse\msvc\cse.exe -! 18-Dec-23 4:07 pm (VS 14.29 2796544 bytes) (HPWH 1.22.0+HEAD.f9b8f77.122) -! Command line: -x! -b -t1 bt_test -! Input file: D:\cse\test\bt_test.cse -! Report file: D:\CSE\TEST\BT_TEST.REP - -! Timing info -- - -! Input: Time = 0.08 Calls = 1 T/C = 0.0800 -! AutoSizing: Time = 0.00 Calls = 0 T/C = 0.0000 -! Simulation: Time = 0.07 Calls = 1 T/C = 0.0730 -! Reports: Time = 0.00 Calls = 1 T/C = 0.0010 -! Total: Time = 0.15 Calls = 1 T/C = 0.1540 + + +Monthly Energy Use, meter "ElecMtrInitNo" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Jan 0.0158 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 -.0096 0 +Feb 0.0229 0 0 0 0 0 0 0 0 0 0 0 0 0.0229 0 0 0 0 0 0 0 0 0 0 0 +Mar 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Apr 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +May 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Jun 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +Jul 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Aug 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Sep 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +Oct 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Nov 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +Dec 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 + +Yr 0.289 0 0 0 0 0 0 0 0 0 0 0 0 0.299 0 0 0 0 0 0 0 0 0 -.0096 0 + + + +Monthly Energy Use, meter "ElecMtrInitYes" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Jan 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 -.0254 0 +Feb 0.0210 0 0 0 0 0 0 0 0 0 0 0 0 0.0229 0 0 0 0 0 0 0 0 0 -.0019 0 +Mar 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Apr 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +May 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Jun 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +Jul 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Aug 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Sep 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +Oct 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Nov 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +Dec 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 + +Yr 0.272 0 0 0 0 0 0 0 0 0 0 0 0 0.299 0 0 0 0 0 0 0 0 0 -.0273 0 + + + +Battery and warmup with (Yes) & without (No) btInitSOE for Thu 01-Jan + + Day Hour NoSOE NoEgy[kWh] NoBT[kW] YesSOE YesEgy[kWh] YesBT[kW] + ---------- ---------- ------ ---------- -------- ------ ----------- --------- + Thu 01-Jan 0 0.279 2.79 -0.01 0.799 7.99 -0.01 + Thu 01-Jan 1 0.278 2.78 -0.01 0.798 7.98 -0.01 + Thu 01-Jan 2 0.277 2.77 -0.01 0.797 7.97 -0.01 + Thu 01-Jan 3 0.276 2.76 -0.01 0.796 7.96 -0.01 + Thu 01-Jan 4 0.275 2.75 -0.01 0.795 7.95 -0.01 + Thu 01-Jan 5 0.274 2.74 -0.01 0.794 7.94 -0.01 + Thu 01-Jan 6 0.273 2.73 -0.01 0.793 7.93 -0.01 + Thu 01-Jan 7 0.272 2.72 -0.01 0.792 7.92 -0.01 + Thu 01-Jan 8 0.271 2.71 -0.01 0.791 7.91 -0.01 + Thu 01-Jan 9 0.27 2.7 -0.01 0.79 7.9 -0.01 + Thu 01-Jan 10 0.269 2.69 -0.01 0.789 7.89 -0.01 + Thu 01-Jan 11 0.268 2.68 -0.01 0.788 7.88 -0.01 + Thu 01-Jan 12 0.267 2.67 -0.01 0.787 7.87 -0.01 + Thu 01-Jan 13 0.266 2.66 -0.01 0.786 7.86 -0.01 + Thu 01-Jan 14 0.265 2.65 -0.01 0.785 7.85 -0.01 + Thu 01-Jan 15 0.264 2.64 -0.01 0.784 7.84 -0.01 + Thu 01-Jan 16 0.263 2.63 -0.01 0.783 7.83 -0.01 + Thu 01-Jan 17 0.262 2.62 -0.01 0.782 7.82 -0.01 + Thu 01-Jan 18 0.261 2.61 -0.01 0.781 7.81 -0.01 + Thu 01-Jan 19 0.26 2.6 -0.01 0.78 7.8 -0.01 + Thu 01-Jan 20 0.259 2.59 -0.01 0.779 7.79 -0.01 + Thu 01-Jan 21 0.258 2.58 -0.01 0.778 7.78 -0.01 + Thu 01-Jan 22 0.257 2.57 -0.01 0.777 7.77 -0.01 + Thu 01-Jan 23 0.256 2.56 -0.01 0.776 7.76 -0.01 + + + +! Log for Run 001: + +! CSE 0.921.0+battery-submeter.fe0a7d96.136.dirty for Win32 console + + + +Input for Run 001: + +# #define kw_to_btuh 3412.142 +# #define max_bt_pwr 4.08 + + wuDays = 30 + WfName="Bishop.epw" // reference city for CA Climate Zone 16 + nSubSteps=1 + + // This battery should go through warm-up with a default assumption of 100% SOE + // at beginning of warmup. This battery should be initialized to the initSOE + // value at the beginning of the warmup (default of 100%). Since we don't + // explicitly see the warmup in the output reports, we should see that battery + // SOE is (10 kWh - (30 days x 24 hrs/day x 0.01 kWh/hr)) / 10 kWh = 0.28 at + // the beginning of first timestep. However, since we only report SOE at the + // END of each timestep, the first value should be 0.28 - 0.01/10.0 = 0.279 and + // decrease 0.01 each hour after that. + METER "ElecMtrInitNo" + GAIN "BuildingLoadInitNo" + gnEndUse= Lit + gnMeter = ElecMtrInitNo + gnPower = 0.01 * kw_to_btuh + BATTERY "BatteryInitNo" + btMeter = ElecMtrInitNo + btMaxCap = 10.0 // kWh + btMaxChgPwr = 5.0 // kW + btMaxDschgPwr = 5.0 // kW + btUseUsrChg = No + btChgEff = 1.0 + btDschgEff = 1.0 + + // This battery should be initialized to the initSOE value at the beginning of + // the simulation. Since the spreadsheet shows the SOE values at the END of + // each timestep, we should see the first SOE at 0.799 (0.8 - 0.01 kWh / 10kWh) = + // 0.799), then dropping 0.01 each additional hour. + METER "ElecMtrInitYes" + GAIN "BuildingLoadInitYes" LIKE "BuildingLoadInitNo" + gnMeter = ElecMtrInitYes + BATTERY "BatteryInitYes" LIKE "BatteryInitNo" + btMeter = ElecMtrInitYes + btInitSOE = 0.8 // 80% state of energy + + REPORT rpType=MTR rpMeter = "ElecMtrInitNo" rpFreq=MONTH + REPORT rpType=MTR rpMeter = "ElecMtrInitYes" rpFreq=MONTH + + REPORT + rpType = UDT + rpFreq = HOUR + rpTitle = "Battery and warmup with (Yes) & without (No) btInitSOE" + rpDayBeg = jan 1 + rpDayEnd = jan 1 + rpHeader = "Yes" + rpFooter = "No" + ReportCol colhead="Day" colVal=@Top.dateStr + ReportCol colhead="Hour" colVal=@Top.iHr + ReportCol colhead="NoSOE" colWid=6 colVal=@BATTERY["BatteryInitNo"].soe + ReportCol colhead="NoEgy[kWh]" colWid=10 colVal=@BATTERY["BatteryInitNo"].energy + ReportCol colhead="NoBT[kW]" colWid=8 colVal=@METER["ElecMtrInitNo"].H.BT / kw_to_btuh + ReportCol colhead="YesSOE" colWid=6 colVal=@BATTERY["BatteryInitYes"].soe + ReportCol colhead="YesEgy[kWh]" colWid=11 colVal=@BATTERY["BatteryInitYes"].energy + ReportCol colhead="YesBT[kW]" colWid=9 colVal=@METER["ElecMtrInitYes"].H.BT / kw_to_btuh + + DELETE REPORT "EB" + + RUN + + + +! CSE 0.921.0+battery-submeter.fe0a7d96.136.dirty for Win32 console run(s) done: Wed 27-Mar-24 11:30:50 am + +! Executable: /users/neal-kruis/projects/cse/builds/clion-release/cse-appleclang-64 +! ? (enExeInfo fail) (HPWH 1.23.0+HEAD.f90302f.61) +! Command line: -x! -b -t1 bt_test +! Input file: /Users/neal-kruis/projects/cse/test/bt_test.cse +! Report file: /USERS/NEAL-KRUIS/PROJECTS/CSE/TEST/BT_TEST.REP + +! Timing info -- + +! Input: Time = 0.07 Calls = 1 T/C = 0.0680 +! AutoSizing: Time = 0.00 Calls = 0 T/C = 0.0000 +! Simulation: Time = 0.08 Calls = 1 T/C = 0.0770 +! Reports: Time = 0.00 Calls = 1 T/C = 0.0010 +! Total: Time = 0.15 Calls = 1 T/C = 0.1460 diff --git a/test/ref-macos64-appleclang/PV_BT_TEST.REP b/test/ref-macos64-appleclang/PV_BT_TEST.REP index ccc871c95..3f5615c88 100644 --- a/test/ref-macos64-appleclang/PV_BT_TEST.REP +++ b/test/ref-macos64-appleclang/PV_BT_TEST.REP @@ -1,323 +1,322 @@ - - -GridLoads by Battery Control (kWh) - - Day NoBtNoPv NoBt Dflt PkShv TDV Ext - ---------- ---------- ---------- ---------- ---------- ---------- ---------- - Sat 31-Jan 1618.13 1258.89 1248.98 1256.95 1248.98 1272.05 - Sat 28-Feb 1475.21 1056.08 1062.64 1053.05 1062.64 1059.98 - Tue 31-Mar 1353.98 788.596 811.425 801.199 811.687 816.733 - Thu 30-Apr 1269.84 666.533 681.699 668.307 681.209 687.514 - Sun 31-May 798.286 138.446 153.204 138.52 152.299 148.374 - Tue 30-Jun 494.55 -224 -213 -224 -215 -209 - Fri 31-Jul 505.609 -216 -203 -216 -204 -202 - Mon 31-Aug 494.616 -219 -203 -219 -203 -201 - Wed 30-Sep 474.129 -160 -148 -160 -149 -139 - Sat 31-Oct 738.145 201.981 215.106 202.42 214.956 224.487 - Mon 30-Nov 1274.11 880.22 880.098 880.622 879.92 887.477 - Thu 31-Dec 1488.14 1102.05 1109.34 1088.86 1109.34 1129.58 - - - -! Log for Run 001: - -! CSE 0.920.0+main.99c64c5b.17 for Win32 console - - - -Input for Run 001: - - /* - BATTERY + PV TEST AND CONTROL STRATEGIES - ======================================== - - This module seeks to test the BATTERY record using various control strategies. The Battery is simulated while a "typical" building load and associated "PV Array" is specified from an external CSV file and set to a GAIN block using gnPower fields. - - DEFAULT: - -------- - - The default algorithm that ships with the code. This algorithm simply takes the adjusted load (Home Load - PV Generation) and sets the battery request to satisfy that. If excess PV is available, the battery attempts to absorb all energy, otherwise, the battery attempts to provide all energy. The default strategy (as all strategies) is limited to the physical capabilities of the battery. - - PEAK SHAVING: - ------------- - - The basic "peak shaving" algorithm demonstrated here compares the current adjusted load (Home - PV Generation) with a power setpoint. If above the setpoint, the battery will attempt to provide assistance if it can. In essence, the battery attempts to limit the peak within its capability. - - The battery is called to discharge when peak power (average peak power over the hour) is over a given threshold. Otherwise, it always charges when storage capacity is available. - - TDV-Attenuated Strategy: - ------------------------ - - This strategy controls based on the TDV signal and the load with the following guidelines: - - - Any available excess energy to charge the battery is always requested - - Discharge is made in proportion to the amount the actual TDV signal vs a reference - - Sign convention is the same as above. TDV is the current step's TDV signal; TDV_ref is the global reference TDV signal (which could change over time). As seen below, as TDV attains the reference value and above, the battery supplies a full charge. When the TDV is less than the reference value, only a fraction of the load is attempted. - - P_req(P_load, P_max_chg, TDV, TDV_ref) = - -1 * if (P_load >= 0) - min(P_load, P_max_dschg) * (min(TDV, TDV_ref) / TDV_ref) ** 2 - else - P_load - end - - Specifically, above, if TDV is 1/2 of TDV_ref, then only 1/4 of the load is requested to be supplied. If TDV is 3/4 of TDV_ref, then only 9/16 of the load is requested to be supplied. If TDV is greater than or equal to TDV_ref, the full load is requested to be supplied. Thus, charging at higher TDVs is favored without neglecting low-loads completely. - - NOTE: if CSE is built with the _DEBUG symbol defined, then you will get a warning when the gnPower of BuildingLoad goes negative. The GAIN object is not typically used in the fashion we present here: we merely want to specify the "effective" building load + PV without clutting this file with an entire building definition (as you would do in a real study). - */ - IMPORTFILE Data - imFileName="pv_bt_data.dat" - imFreq="Hour" - imTitle="PV/BT Data" - - WfName="Bishop.epw" // reference city for CA Climate Zone 16 - wuDays=0 - nSubSteps=1 - -# #define kw_to_btuh 3412.142 -# #define max_bt_pwr 4.08 -# #define pwr_target_kW 4.0 -# #define soe_target 0.7 -# #define TDV_ref 27.0 -# #define AdjLoad_kW import(Data, "AdjustedLoad_kW") - - METER "ElecMtrDefault" - GAIN "BuildingLoadDefault" - gnMeter = ElecMtrDefault - gnEndUse = Lit - gnPower = import(Data,"HouseLoad_kW") * kw_to_btuh - BATTERY "BatteryDefault" - btMeter = ElecMtrDefault - btEndUse = BT - btMaxCap = 16.320 // kWh - btMaxChgPwr = max_bt_pwr // kW - btMaxDschgPwr = max_bt_pwr // kW - btUseUsrChg = No - btChgEff = 0.97467943 - btDschgEff = 0.97467943 - btInitSOE = 1.0 // 100% state of energy - GAIN "PvDefault" - gnMeter = ElecMtrDefault - gnEndUse = PV - gnPower = -1.0 * import(Data,"PvOut_kW") * kw_to_btuh - - METER "ElecMtr00" - GAIN "BuildingLoad00" LIKE BuildingLoadDefault - gnMeter = ElecMtr00 - BATTERY "Battery00" LIKE BatteryDefault - btMeter = ElecMtr00 - btUseUsrChg = Yes - btChgReq = 0.0 - - METER "ElecMtr0" - GAIN "BuildingLoad0" LIKE BuildingLoadDefault - gnMeter = ElecMtr0 - BATTERY "Battery0" LIKE BatteryDefault - btMeter = ElecMtr0 - btUseUsrChg = Yes - btChgReq = 0.0 - GAIN "Pv0" LIKE PvDefault - gnMeter = ElecMtr0 - - METER "ElecMtrPeakShaving" - GAIN "BuildingLoadPeakShaving" LIKE BuildingLoadDefault - gnMeter = ElecMtrPeakShaving - BATTERY "BatteryPeakShaving" LIKE BatteryDefault - btMeter = ElecMtrPeakShaving - btUseUsrChg = Yes - btChgReq = -1.0 * select( - AdjLoad_kW > pwr_target_kW, - AdjLoad_kW - pwr_target_kW, - AdjLoad_kW < 0.0, - AdjLoad_kW, - default 0.0) - GAIN "PvPeakShaving" LIKE PvDefault - gnMeter = ElecMtrPeakShaving - - METER "ElecMtrTDV" - GAIN "BuildingLoadTDV" LIKE BuildingLoadDefault - gnMeter = ElecMtrTDV - BATTERY "BatteryTDV" LIKE BatteryDefault - btMeter = ElecMtrTDV - btUseUsrChg = Yes - btChgReq = -1.0 * select( - AdjLoad_kW >= 0.0, - min(AdjLoad_kW, max_bt_pwr) * pow(min(import(Data,"TDV_kBtu__kWh"), TDV_ref) / TDV_ref, 2), - default AdjLoad_kW) - GAIN "PvTDV" LIKE PvDefault - gnMeter = ElecMtrTDV - - METER "ElecMtrExtCalc" - GAIN "BuildingLoadExtCalc" LIKE BuildingLoadDefault - gnMeter = ElecMtrExtCalc - BATTERY "BatteryExtCalc" LIKE BatteryDefault - btMeter = ElecMtrExtCalc - btUseUsrChg = Yes - btChgReq = import(Data, "BtPwrReq_kW") - GAIN "PvExtCalc" LIKE PvDefault - gnMeter = ElecMtrExtCalc - - // Test that max discharge power changes - // Should go from 1 to 0 SOE in first step - METER "ElecMtrMaxCalc" - GAIN "BuildingLoadMaxCalc" - gnMeter = ElecMtrMaxCalc - gnEndUse = Lit - gnPower = 10 * kw_to_btuh - BATTERY "BatteryMaxCalc" LIKE BatteryDefault - btInitSOE=1 // kWh - btMaxChgPwr=10 // kW - btMaxDschgPwr=10 // kW - btMaxCap = 10.0 // kWh - btChgEff = 1.0 - btDschgEff = 1.0 - btUseUsrChg = No - btMeter = ElecMtrMaxCalc - - // Test that max charge power changes - // Should go from 0 to 1 SOE in first step - METER "ElecMtrMinCalc" - GAIN "BuildingLoadMinCalc" - gnMeter = ElecMtrMinCalc - gnEndUse = Lit - gnPower = -10 * kw_to_btuh - BATTERY "BatteryMinCalc" LIKE BatteryDefault - btInitSOE=0 // kWh - btMaxChgPwr=10 // kW - btMaxDschgPwr=10 // kW - btMaxCap = 10.0 // kWh - btChgEff = 1.0 - btDschgEff = 1.0 - btUseUsrChg = No - btMeter = ElecMtrMinCalc - - // Should result in Grid loads of 5 kW and 7.4 kW over the first two hours - METER "ElecMtrDebugCalc" - GAIN "BuildingLoadDebugCalc" - gnEndUse= Lit - gnMeter = ElecMtrDebugCalc - gnPower = 10 * kw_to_btuh - BATTERY "BatteryDebugCalc" LIKE BatteryDefault - btChgEff = 0.95 // The charging efficiency of storing electricity into the BATTERY system - btDschgEff = 0.95 // The discharge efficiency for when the BATTERY system is discharging power - btMaxCap = 8 // The maximum amount of energy that can be stored in the BATTERY system, kWh - btMaxChgPwr = 5 // The maximum rate at which the BATTERY can be charged in kilowatts (i.e., energy flowing into the BATTERY), kW - btMaxDschgPwr = 5 // The maximum rate at which the BATTERY can be discharged in kilowatts (i.e., energy flowing out of the BATTERY), kW - //btChgReq = import(BTCtrlData,"BatteryCharge") // The power request to charge (or discharge if negative) the battery (expression), kW - btUseUsrChg = No // If YES/1, then the user specified btChgReq will be used to set the battery?s charge request; if NO/0, the default strategy will be used - btMeter = "ElecMtrDebugCalc" // Electric meter to log charge/discharge to - - REPORT - rpType = UDT - rpFreq = MONTH - rpTitle = "GridLoads by Battery Control (kWh)" - rpDayBeg = jan 1 - rpDayEnd = dec 31 - rpHeader = Yes - ReportCol colhead="Day" colVal=@Top.dateStr - ReportCol colhead="NoBtNoPv" colVal=@METER["ElecMtr00"].M.tot / kw_to_btuh - ReportCol colhead="NoBt" colVal=@METER["ElecMtr0"].M.tot / kw_to_btuh - ReportCol colhead="Dflt" colVal=@METER["ElecMtrDefault"].M.tot / kw_to_btuh - ReportCol colhead="PkShv" colVal=@METER["ElecMtrPeakShaving"].M.tot / kw_to_btuh - ReportCol colhead="TDV" colVal=@METER["ElecMtrTDV"].M.tot / kw_to_btuh - ReportCol colhead="Ext" colVal=@METER["ElecMtrExtCalc"].M.tot / kw_to_btuh - - EXPORTFILE "PvBtOut" - xfFileName = "pv_bt_out" - xfFileStat = OVERWRITE - EXPORT - exType = UDT - exFreq = HOUR - exTitle = "Battery/PV Output" - exDayBeg = jan 1 - exDayEnd = dec 31 - exHeader = ColumnsOnly - ExportCol colhead="Day" colVal=@Top.dateStr - ExportCol colhead="Hour" colVal=@Top.iHr - ExportCol colhead="PV Out [kW]" colVal=@METER["ElecMtrDefault"].H.pv / kw_to_btuh - ExportCol colhead="HomeLoad [kW]" colVal=@METER["ElecMtrDefault"].H.lit / kw_to_btuh - ExportCol colhead="AdjLoad [kW]" colVal=(@METER["ElecMtrDefault"].H.lit + @METER["ElecMtrDefault"].H.pv) / kw_to_btuh - ExportCol colhead="TDV [kBtu/kWh]" colVal=import(Data,"TDV_kBtu__kWh") - ExportCol colhead="NoBtNoPv SOE" colVal=@BATTERY["Battery00"].soe - ExportCol colhead="NoBtNoPv Energy [kWh]" colVal=@BATTERY["Battery00"].energy - ExportCol colhead="NoBtNoPv GridLoad [kW]" colVal=@METER["ElecMtr00"].H.tot / kw_to_btuh - ExportCol colhead="NoBt SOE" colVal=@BATTERY["Battery0"].soe - ExportCol colhead="NoBt Energy [kWh]" colVal=@BATTERY["Battery0"].energy - ExportCol colhead="NoBt GridLoad [kW]" colVal=@METER["ElecMtr0"].H.tot / kw_to_btuh - ExportCol colhead="Dflt SOE" colVal=@BATTERY["BatteryDefault"].soe - ExportCol colhead="Dflt Energy [kWh]" colVal=@BATTERY["BatteryDefault"].energy - ExportCol colhead="Dflt GridLoad [kW]" colVal=@METER["ElecMtrDefault"].H.tot / kw_to_btuh - ExportCol colhead="PkShv SOE" colVal=@BATTERY["BatteryPeakShaving"].soe - ExportCol colhead="PkShv Energy [kWh]" colVal=@BATTERY["BatteryPeakShaving"].energy - ExportCol colhead="PkShv GridLoad [kW]" colVal=@METER["ElecMtrPeakShaving"].H.tot / kw_to_btuh - ExportCol colhead="TDV SOE" colVal=@BATTERY["BatteryTDV"].soe - ExportCol colhead="TDV Energy [kWh]" colVal=@BATTERY["BatteryTDV"].energy - ExportCol colhead="TDV GridLoad [kW]" colVal=@METER["ElecMtrTDV"].H.tot / kw_to_btuh - ExportCol colhead="Ext SOE" colVal=@BATTERY["BatteryExtCalc"].soe - ExportCol colhead="Ext Energy [kWh]" colVal=@BATTERY["BatteryExtCalc"].energy - ExportCol colhead="Ext GridLoad [kW]" colVal=@METER["ElecMtrExtCalc"].H.tot / kw_to_btuh - ExportCol colhead="Max SOE" colVal=@BATTERY["BatteryMaxCalc"].soe - ExportCol colhead="Max Energy [kWh]" colVal=@BATTERY["BatteryMaxCalc"].energy - ExportCol colhead="Max GridLoad [kW]" colVal=@METER["ElecMtrMaxCalc"].H.tot / kw_to_btuh - ExportCol colhead="Min SOE" colVal=@BATTERY["BatteryMinCalc"].soe - ExportCol colhead="Min Energy [kWh]" colVal=@BATTERY["BatteryMinCalc"].energy - ExportCol colhead="Min GridLoad [kW]" colVal=@METER["ElecMtrMinCalc"].H.tot / kw_to_btuh - ExportCol colhead="Debug SOE" colVal=@BATTERY["BatteryDebugCalc"].soe - ExportCol colhead="Debug Energy [kWh]" colVal=@BATTERY["BatteryDebugCalc"].energy - ExportCol colhead="Debug GridLoad [kW]" colVal=@METER["ElecMtrDebugCalc"].H.tot / kw_to_btuh - - EXPORTFILE "PvBtOutElecMtrMaxCalc" - xfFileName = "pv_bt_out_max" - xfFileStat = OVERWRITE - EXPORT "ExportElecMtrMaxCalc" - exType = "MTR" // Export type - exFreq = "HOUR" // Time interval for generating rows of export data - exMeter = "ElecMtrMaxCalc" // Meter to report - exBtuSf = 1000 // Result scaling factor (1,000 reports kBtu) - exDayBeg = Jan 1 - exDayEnd = Dec 31 - - EXPORTFILE "PvBtOutElecMtrMinCalc" - xfFileName = "pv_bt_out_min" - xfFileStat = OVERWRITE - EXPORT "ExportElecMtrMinCalc" - exType = "MTR" // Export type - exFreq = "HOUR" // Time interval for generating rows of export data - exMeter = "ElecMtrMinCalc" // Meter to report - exBtuSf = 1000 // Result scaling factor (1,000 reports kBtu) - exDayBeg = Jan 1 - exDayEnd = Dec 31 - - EXPORTFILE "PvBtOutElecMtrDebug" - xfFileName = "pv_bt_out_debug" - xfFileStat = OVERWRITE - EXPORT "ExportElecMtrDebug" - exType = "MTR" // Export type - exFreq = "HOUR" // Time interval for generating rows of export data - exMeter = "ElecMtrDebugCalc" // Meter to report - exBtuSf = 1000 // Result scaling factor (1,000 reports kBtu) - exDayBeg = Jan 1 - exDayEnd = Dec 31 - - DELETE REPORT "EB" - - RUN - - - -! CSE 0.920.0+main.99c64c5b.17 for Win32 console run(s) done: Mon 18-Dec-23 4:17:53 pm - -! Executable: d:\cse\msvc\cse.exe -! 18-Dec-23 4:07 pm (VS 14.29 2796544 bytes) (HPWH 1.22.0+HEAD.f9b8f77.122) -! Command line: -x! -b -t1 pv_bt_test -! Input file: D:\cse\test\pv_bt_test.cse -! Report file: D:\CSE\TEST\PV_BT_TEST.REP - -! Timing info -- - -! Input: Time = 0.08 Calls = 1 T/C = 0.0820 -! AutoSizing: Time = 0.00 Calls = 0 T/C = 0.0000 -! Simulation: Time = 1.10 Calls = 1 T/C = 1.1050 -! Reports: Time = 0.04 Calls = 1 T/C = 0.0350 -! Total: Time = 1.22 Calls = 1 T/C = 1.2220 + + +GridLoads by Battery Control (kWh) + + Day NoBtNoPv NoBt Dflt PkShv TDV Ext + ---------- ---------- ---------- ---------- ---------- ---------- ---------- + Sat 31-Jan 1618.13 1258.89 1248.98 1256.95 1248.98 1272.05 + Sat 28-Feb 1475.21 1056.08 1062.64 1053.05 1062.64 1059.98 + Tue 31-Mar 1353.98 788.596 811.425 801.199 811.687 816.733 + Thu 30-Apr 1269.84 666.533 681.699 668.307 681.209 687.514 + Sun 31-May 798.286 138.446 153.204 138.52 152.299 148.374 + Tue 30-Jun 494.55 -224 -213 -224 -215 -209 + Fri 31-Jul 505.609 -216 -203 -216 -204 -202 + Mon 31-Aug 494.616 -219 -203 -219 -203 -201 + Wed 30-Sep 474.129 -160 -148 -160 -149 -139 + Sat 31-Oct 738.145 201.981 215.106 202.42 214.956 224.487 + Mon 30-Nov 1274.11 880.22 880.098 880.622 879.92 887.477 + Thu 31-Dec 1488.14 1102.05 1109.34 1088.86 1109.34 1129.58 + + + +! Log for Run 001: + +! CSE 0.921.0+battery-submeter.fe0a7d96.136.dirty for Win32 console + + + +Input for Run 001: + + /* + BATTERY + PV TEST AND CONTROL STRATEGIES + ======================================== + + This module seeks to test the BATTERY record using various control strategies. The Battery is simulated while a "typical" building load and associated "PV Array" is specified from an external CSV file and set to a GAIN block using gnPower fields. + + DEFAULT: + -------- + + The default algorithm that ships with the code. This algorithm simply takes the adjusted load (Home Load - PV Generation) and sets the battery request to satisfy that. If excess PV is available, the battery attempts to absorb all energy, otherwise, the battery attempts to provide all energy. The default strategy (as all strategies) is limited to the physical capabilities of the battery. + + PEAK SHAVING: + ------------- + + The basic "peak shaving" algorithm demonstrated here compares the current adjusted load (Home - PV Generation) with a power setpoint. If above the setpoint, the battery will attempt to provide assistance if it can. In essence, the battery attempts to limit the peak within its capability. + + The battery is called to discharge when peak power (average peak power over the hour) is over a given threshold. Otherwise, it always charges when storage capacity is available. + + TDV-Attenuated Strategy: + ------------------------ + + This strategy controls based on the TDV signal and the load with the following guidelines: + + - Any available excess energy to charge the battery is always requested + - Discharge is made in proportion to the amount the actual TDV signal vs a reference + + Sign convention is the same as above. TDV is the current step's TDV signal; TDV_ref is the global reference TDV signal (which could change over time). As seen below, as TDV attains the reference value and above, the battery supplies a full charge. When the TDV is less than the reference value, only a fraction of the load is attempted. + + P_req(P_load, P_max_chg, TDV, TDV_ref) = + -1 * if (P_load >= 0) + min(P_load, P_max_dschg) * (min(TDV, TDV_ref) / TDV_ref) ** 2 + else + P_load + end + + Specifically, above, if TDV is 1/2 of TDV_ref, then only 1/4 of the load is requested to be supplied. If TDV is 3/4 of TDV_ref, then only 9/16 of the load is requested to be supplied. If TDV is greater than or equal to TDV_ref, the full load is requested to be supplied. Thus, charging at higher TDVs is favored without neglecting low-loads completely. + + NOTE: if CSE is built with the _DEBUG symbol defined, then you will get a warning when the gnPower of BuildingLoad goes negative. The GAIN object is not typically used in the fashion we present here: we merely want to specify the "effective" building load + PV without clutting this file with an entire building definition (as you would do in a real study). + */ + IMPORTFILE Data + imFileName="pv_bt_data.dat" + imFreq="Hour" + imTitle="PV/BT Data" + + WfName="Bishop.epw" // reference city for CA Climate Zone 16 + wuDays=0 + nSubSteps=1 + +# #define kw_to_btuh 3412.142 +# #define max_bt_pwr 4.08 +# #define pwr_target_kW 4.0 +# #define soe_target 0.7 +# #define TDV_ref 27.0 +# #define AdjLoad_kW import(Data, "AdjustedLoad_kW") + + METER "ElecMtrDefault" + GAIN "BuildingLoadDefault" + gnMeter = ElecMtrDefault + gnEndUse = Lit + gnPower = import(Data,"HouseLoad_kW") * kw_to_btuh + BATTERY "BatteryDefault" + btMeter = ElecMtrDefault + btMaxCap = 16.320 // kWh + btMaxChgPwr = max_bt_pwr // kW + btMaxDschgPwr = max_bt_pwr // kW + btUseUsrChg = No + btChgEff = 0.97467943 + btDschgEff = 0.97467943 + btInitSOE = 1.0 // 100% state of energy + GAIN "PvDefault" + gnMeter = ElecMtrDefault + gnEndUse = PV + gnPower = -1.0 * import(Data,"PvOut_kW") * kw_to_btuh + + METER "ElecMtr00" + GAIN "BuildingLoad00" LIKE BuildingLoadDefault + gnMeter = ElecMtr00 + BATTERY "Battery00" LIKE BatteryDefault + btMeter = ElecMtr00 + btUseUsrChg = Yes + btChgReq = 0.0 + + METER "ElecMtr0" + GAIN "BuildingLoad0" LIKE BuildingLoadDefault + gnMeter = ElecMtr0 + BATTERY "Battery0" LIKE BatteryDefault + btMeter = ElecMtr0 + btUseUsrChg = Yes + btChgReq = 0.0 + GAIN "Pv0" LIKE PvDefault + gnMeter = ElecMtr0 + + METER "ElecMtrPeakShaving" + GAIN "BuildingLoadPeakShaving" LIKE BuildingLoadDefault + gnMeter = ElecMtrPeakShaving + BATTERY "BatteryPeakShaving" LIKE BatteryDefault + btMeter = ElecMtrPeakShaving + btUseUsrChg = Yes + btChgReq = -1.0 * select( + AdjLoad_kW > pwr_target_kW, + AdjLoad_kW - pwr_target_kW, + AdjLoad_kW < 0.0, + AdjLoad_kW, + default 0.0) + GAIN "PvPeakShaving" LIKE PvDefault + gnMeter = ElecMtrPeakShaving + + METER "ElecMtrTDV" + GAIN "BuildingLoadTDV" LIKE BuildingLoadDefault + gnMeter = ElecMtrTDV + BATTERY "BatteryTDV" LIKE BatteryDefault + btMeter = ElecMtrTDV + btUseUsrChg = Yes + btChgReq = -1.0 * select( + AdjLoad_kW >= 0.0, + min(AdjLoad_kW, max_bt_pwr) * pow(min(import(Data,"TDV_kBtu__kWh"), TDV_ref) / TDV_ref, 2), + default AdjLoad_kW) + GAIN "PvTDV" LIKE PvDefault + gnMeter = ElecMtrTDV + + METER "ElecMtrExtCalc" + GAIN "BuildingLoadExtCalc" LIKE BuildingLoadDefault + gnMeter = ElecMtrExtCalc + BATTERY "BatteryExtCalc" LIKE BatteryDefault + btMeter = ElecMtrExtCalc + btUseUsrChg = Yes + btChgReq = import(Data, "BtPwrReq_kW") + GAIN "PvExtCalc" LIKE PvDefault + gnMeter = ElecMtrExtCalc + + // Test that max discharge power changes + // Should go from 1 to 0 SOE in first step + METER "ElecMtrMaxCalc" + GAIN "BuildingLoadMaxCalc" + gnMeter = ElecMtrMaxCalc + gnEndUse = Lit + gnPower = 10 * kw_to_btuh + BATTERY "BatteryMaxCalc" LIKE BatteryDefault + btInitSOE=1 // kWh + btMaxChgPwr=10 // kW + btMaxDschgPwr=10 // kW + btMaxCap = 10.0 // kWh + btChgEff = 1.0 + btDschgEff = 1.0 + btUseUsrChg = No + btMeter = ElecMtrMaxCalc + + // Test that max charge power changes + // Should go from 0 to 1 SOE in first step + METER "ElecMtrMinCalc" + GAIN "BuildingLoadMinCalc" + gnMeter = ElecMtrMinCalc + gnEndUse = Lit + gnPower = -10 * kw_to_btuh + BATTERY "BatteryMinCalc" LIKE BatteryDefault + btInitSOE=0 // kWh + btMaxChgPwr=10 // kW + btMaxDschgPwr=10 // kW + btMaxCap = 10.0 // kWh + btChgEff = 1.0 + btDschgEff = 1.0 + btUseUsrChg = No + btMeter = ElecMtrMinCalc + + // Should result in Grid loads of 5 kW and 7.4 kW over the first two hours + METER "ElecMtrDebugCalc" + GAIN "BuildingLoadDebugCalc" + gnEndUse= Lit + gnMeter = ElecMtrDebugCalc + gnPower = 10 * kw_to_btuh + BATTERY "BatteryDebugCalc" LIKE BatteryDefault + btChgEff = 0.95 // The charging efficiency of storing electricity into the BATTERY system + btDschgEff = 0.95 // The discharge efficiency for when the BATTERY system is discharging power + btMaxCap = 8 // The maximum amount of energy that can be stored in the BATTERY system, kWh + btMaxChgPwr = 5 // The maximum rate at which the BATTERY can be charged in kilowatts (i.e., energy flowing into the BATTERY), kW + btMaxDschgPwr = 5 // The maximum rate at which the BATTERY can be discharged in kilowatts (i.e., energy flowing out of the BATTERY), kW + //btChgReq = import(BTCtrlData,"BatteryCharge") // The power request to charge (or discharge if negative) the battery (expression), kW + btUseUsrChg = No // If YES/1, then the user specified btChgReq will be used to set the battery?s charge request; if NO/0, the default strategy will be used + btMeter = "ElecMtrDebugCalc" // Electric meter to log charge/discharge to + + REPORT + rpType = UDT + rpFreq = MONTH + rpTitle = "GridLoads by Battery Control (kWh)" + rpDayBeg = jan 1 + rpDayEnd = dec 31 + rpHeader = Yes + ReportCol colhead="Day" colVal=@Top.dateStr + ReportCol colhead="NoBtNoPv" colVal=@METER["ElecMtr00"].M.tot / kw_to_btuh + ReportCol colhead="NoBt" colVal=@METER["ElecMtr0"].M.tot / kw_to_btuh + ReportCol colhead="Dflt" colVal=@METER["ElecMtrDefault"].M.tot / kw_to_btuh + ReportCol colhead="PkShv" colVal=@METER["ElecMtrPeakShaving"].M.tot / kw_to_btuh + ReportCol colhead="TDV" colVal=@METER["ElecMtrTDV"].M.tot / kw_to_btuh + ReportCol colhead="Ext" colVal=@METER["ElecMtrExtCalc"].M.tot / kw_to_btuh + + EXPORTFILE "PvBtOut" + xfFileName = "pv_bt_out" + xfFileStat = OVERWRITE + EXPORT + exType = UDT + exFreq = HOUR + exTitle = "Battery/PV Output" + exDayBeg = jan 1 + exDayEnd = dec 31 + exHeader = ColumnsOnly + ExportCol colhead="Day" colVal=@Top.dateStr + ExportCol colhead="Hour" colVal=@Top.iHr + ExportCol colhead="PV Out [kW]" colVal=@METER["ElecMtrDefault"].H.pv / kw_to_btuh + ExportCol colhead="HomeLoad [kW]" colVal=@METER["ElecMtrDefault"].H.lit / kw_to_btuh + ExportCol colhead="AdjLoad [kW]" colVal=(@METER["ElecMtrDefault"].H.lit + @METER["ElecMtrDefault"].H.pv) / kw_to_btuh + ExportCol colhead="TDV [kBtu/kWh]" colVal=import(Data,"TDV_kBtu__kWh") + ExportCol colhead="NoBtNoPv SOE" colVal=@BATTERY["Battery00"].soe + ExportCol colhead="NoBtNoPv Energy [kWh]" colVal=@BATTERY["Battery00"].energy + ExportCol colhead="NoBtNoPv GridLoad [kW]" colVal=@METER["ElecMtr00"].H.tot / kw_to_btuh + ExportCol colhead="NoBt SOE" colVal=@BATTERY["Battery0"].soe + ExportCol colhead="NoBt Energy [kWh]" colVal=@BATTERY["Battery0"].energy + ExportCol colhead="NoBt GridLoad [kW]" colVal=@METER["ElecMtr0"].H.tot / kw_to_btuh + ExportCol colhead="Dflt SOE" colVal=@BATTERY["BatteryDefault"].soe + ExportCol colhead="Dflt Energy [kWh]" colVal=@BATTERY["BatteryDefault"].energy + ExportCol colhead="Dflt GridLoad [kW]" colVal=@METER["ElecMtrDefault"].H.tot / kw_to_btuh + ExportCol colhead="PkShv SOE" colVal=@BATTERY["BatteryPeakShaving"].soe + ExportCol colhead="PkShv Energy [kWh]" colVal=@BATTERY["BatteryPeakShaving"].energy + ExportCol colhead="PkShv GridLoad [kW]" colVal=@METER["ElecMtrPeakShaving"].H.tot / kw_to_btuh + ExportCol colhead="TDV SOE" colVal=@BATTERY["BatteryTDV"].soe + ExportCol colhead="TDV Energy [kWh]" colVal=@BATTERY["BatteryTDV"].energy + ExportCol colhead="TDV GridLoad [kW]" colVal=@METER["ElecMtrTDV"].H.tot / kw_to_btuh + ExportCol colhead="Ext SOE" colVal=@BATTERY["BatteryExtCalc"].soe + ExportCol colhead="Ext Energy [kWh]" colVal=@BATTERY["BatteryExtCalc"].energy + ExportCol colhead="Ext GridLoad [kW]" colVal=@METER["ElecMtrExtCalc"].H.tot / kw_to_btuh + ExportCol colhead="Max SOE" colVal=@BATTERY["BatteryMaxCalc"].soe + ExportCol colhead="Max Energy [kWh]" colVal=@BATTERY["BatteryMaxCalc"].energy + ExportCol colhead="Max GridLoad [kW]" colVal=@METER["ElecMtrMaxCalc"].H.tot / kw_to_btuh + ExportCol colhead="Min SOE" colVal=@BATTERY["BatteryMinCalc"].soe + ExportCol colhead="Min Energy [kWh]" colVal=@BATTERY["BatteryMinCalc"].energy + ExportCol colhead="Min GridLoad [kW]" colVal=@METER["ElecMtrMinCalc"].H.tot / kw_to_btuh + ExportCol colhead="Debug SOE" colVal=@BATTERY["BatteryDebugCalc"].soe + ExportCol colhead="Debug Energy [kWh]" colVal=@BATTERY["BatteryDebugCalc"].energy + ExportCol colhead="Debug GridLoad [kW]" colVal=@METER["ElecMtrDebugCalc"].H.tot / kw_to_btuh + + EXPORTFILE "PvBtOutElecMtrMaxCalc" + xfFileName = "pv_bt_out_max" + xfFileStat = OVERWRITE + EXPORT "ExportElecMtrMaxCalc" + exType = "MTR" // Export type + exFreq = "HOUR" // Time interval for generating rows of export data + exMeter = "ElecMtrMaxCalc" // Meter to report + exBtuSf = 1000 // Result scaling factor (1,000 reports kBtu) + exDayBeg = Jan 1 + exDayEnd = Dec 31 + + EXPORTFILE "PvBtOutElecMtrMinCalc" + xfFileName = "pv_bt_out_min" + xfFileStat = OVERWRITE + EXPORT "ExportElecMtrMinCalc" + exType = "MTR" // Export type + exFreq = "HOUR" // Time interval for generating rows of export data + exMeter = "ElecMtrMinCalc" // Meter to report + exBtuSf = 1000 // Result scaling factor (1,000 reports kBtu) + exDayBeg = Jan 1 + exDayEnd = Dec 31 + + EXPORTFILE "PvBtOutElecMtrDebug" + xfFileName = "pv_bt_out_debug" + xfFileStat = OVERWRITE + EXPORT "ExportElecMtrDebug" + exType = "MTR" // Export type + exFreq = "HOUR" // Time interval for generating rows of export data + exMeter = "ElecMtrDebugCalc" // Meter to report + exBtuSf = 1000 // Result scaling factor (1,000 reports kBtu) + exDayBeg = Jan 1 + exDayEnd = Dec 31 + + DELETE REPORT "EB" + + RUN + + + +! CSE 0.921.0+battery-submeter.fe0a7d96.136.dirty for Win32 console run(s) done: Wed 27-Mar-24 11:30:50 am + +! Executable: /users/neal-kruis/projects/cse/builds/clion-release/cse-appleclang-64 +! ? (enExeInfo fail) (HPWH 1.23.0+HEAD.f90302f.61) +! Command line: -x! -b -t1 pv_bt_test +! Input file: /Users/neal-kruis/projects/cse/test/pv_bt_test.cse +! Report file: /USERS/NEAL-KRUIS/PROJECTS/CSE/TEST/PV_BT_TEST.REP + +! Timing info -- + +! Input: Time = 0.06 Calls = 1 T/C = 0.0590 +! AutoSizing: Time = 0.00 Calls = 0 T/C = 0.0000 +! Simulation: Time = 0.91 Calls = 1 T/C = 0.9060 +! Reports: Time = 0.02 Calls = 1 T/C = 0.0230 +! Total: Time = 0.99 Calls = 1 T/C = 0.9890 diff --git a/test/ref-macos64-appleclang/submeter.rep b/test/ref-macos64-appleclang/submeter.rep index 47916b019..e230f19b7 100644 --- a/test/ref-macos64-appleclang/submeter.rep +++ b/test/ref-macos64-appleclang/submeter.rep @@ -3,16 +3,19 @@ Error Messages for Run 001: --------------- -SUBMETER.CSE(7119): Warning: - LOADMETER 'LMHtg': Duplicate reference from LOADMETER 'LMCancel' +SUBMETER.CSE(5609): Info: + meter 'MtrElec': Duplicate reference from meter 'MtrElecRecomb' --------------- -SUBMETER.CSE(7120): Warning: - LOADMETER 'LMClg': Duplicate reference from LOADMETER 'LMCancel' +SUBMETER.CSE(5610): Info: + meter 'MtrElec2': Duplicate reference from meter 'MtrElecRecomb' --------------- -SUBMETER.CSE(7119): Warning: +SUBMETER.CSE(5611): Info: + meter 'MtrElecPV': Duplicate reference from meter 'MtrElecRecomb' +--------------- +SUBMETER.CSE(7121): Info: LOADMETER 'LMHtg': Duplicate reference from LOADMETER 'LMCancel' --------------- -SUBMETER.CSE(7120): Warning: +SUBMETER.CSE(7122): Info: LOADMETER 'LMClg': Duplicate reference from LOADMETER 'LMCancel' --------------- Info: Zone 'Conditioned-zn': Temp control outcomes @@ -45,24 +48,45 @@ HVAC Heating Info +Monthly Energy Use, meter "MtrNatGas" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Jan 352.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223.36 0 129.15 0 0 0 0 +Feb 352.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 238.75 0 113.56 0 0 0 0 +Mar 404.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277.28 0 126.78 0 0 0 0 +Apr 317.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 215.67 0 101.57 0 0 0 0 +May 290.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 184.84 0 105.19 0 0 0 0 +Jun 384.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277.29 0 106.82 0 0 0 0 +Jul 340.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223.34 0 117.23 0 0 0 0 +Aug 324.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 215.64 0 108.61 0 0 0 0 +Sep 321.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 215.66 0 105.45 0 0 0 0 +Oct 432.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 323.46 0 108.61 0 0 0 0 +Nov 352.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223.34 0 128.88 0 0 0 0 +Dec 438.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300.40 0 137.89 0 0 0 0 + +Yr 4308.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2919.0 0 1389.7 0 0 0 0 + + + Monthly Energy Use, meter "MtrElec" Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ -Jan 3.001 0 1.169 0.191 0.227 0.304 0 0 0.258 0.0574 0 0.0760 0 0.174 0.655 0.0413 0.174 0.0248 0.0108 0.0256 .00688 0 .00444 .00980 -0.407 -Feb 2.191 0 0.858 0.213 0.251 0.282 0 0 0.190 0.0518 0 0.0498 0 0.147 0.544 0.0348 0.158 0.0223 0.0115 0.0273 .00605 0 .00432 0.0210 -0.683 -Mar 0.898 0 0.140 .00625 0.297 0.172 0 0 0.0308 0.0573 0 .00887 0 0.149 0.578 0.0353 0.185 0.0346 0.0134 0.0318 .00675 0 .00187 0.0298 -0.881 -Apr 0.775 0 0.234 0.0353 0.245 0.193 0 0 0.0511 0.0555 0 0.0180 0 0.132 0.551 0.0312 0.181 0.0346 0.0104 0.0247 .00541 0 .00663 0.0423 -1.075 -May 0.181 0 0 0 0.239 0.0985 0 0.0564 0 0.0574 0 .00450 0 0.123 0.533 0.0291 0.202 0.0247 .00894 0.0212 .00560 0 .00136 0.0453 -1.270 -Jun 0.300 0.0457 0 0 0.183 0.127 0 0.111 0 0.0555 0 0 0 0.114 0.495 0.0269 0.208 0.0272 0.0134 0.0318 .00569 0 .00279 0.0399 -1.187 -Jul 0.261 0.149 0 0 0.159 0.0477 0 0.120 0 0.0574 0 0 0 0.120 0.534 0.0284 0.227 0.0247 0.0108 0.0256 .00624 0 .00036 0.0466 -1.295 -Aug 0.315 0.108 0 0 0.135 0.0860 0 0.123 0 0.0574 0 0 0 0.129 0.553 0.0305 0.227 0.0173 0.0104 0.0247 .00579 0 .00072 0.0456 -1.239 -Sep 0.406 .00017 0 0 0.194 0.0919 0 0.102 0 0.0555 0 .00109 0 0.139 0.564 0.0329 0.206 0.0322 0.0104 0.0247 .00562 0 .00099 0.0423 -1.097 -Oct 0.739 0 .00383 0 0.228 0.148 0 0.0419 .00082 0.0574 0 .00150 0 0.157 0.620 0.0371 0.199 0.0322 0.0156 0.0370 .00579 0 .00779 0.0351 -0.888 -Nov 1.463 0 0.302 0.0703 0.258 0.219 0 0 0.0661 0.0556 0 0.0359 0 0.165 0.625 0.0390 0.177 0.0322 0.0108 0.0256 .00687 0 .00323 0.0216 -0.649 -Dec 2.906 0 1.074 0.257 0.209 0.312 0 0 0.237 0.0574 0 0.0605 0 0.176 0.662 0.0416 0.173 0.0247 0.0145 0.0344 .00734 0 .00227 0.0108 -0.450 +Jan 3001.0 0 1169.0 190.50 227.41 303.68 0 0 257.63 57.368 0 76.022 0 174.48 654.88 41.285 173.70 24.751 10.805 25.581 6.879 0 4.441 9.800 -407.3 +Feb 2190.9 0 858.40 212.99 251.16 282.12 0 0 190.24 51.816 0 49.817 0 147.00 544.17 34.783 158.45 22.275 11.549 27.344 6.049 0 4.317 20.950 -682.5 +Mar 897.62 0 140.03 6.245 296.55 172.39 0 0 30.761 57.291 0 8.872 0 149.49 578.24 35.336 185.49 34.647 13.413 31.756 6.753 0 1.865 29.828 -881.3 +Apr 775.28 0 233.64 35.302 244.68 193.20 0 0 51.068 55.517 0 18.016 0 131.96 550.53 31.224 181.08 34.649 10.433 24.701 5.410 0 6.627 42.330 -1075 +May 181.28 0 0 0 238.97 98.534 0 56.371 0 57.368 0 4.504 0 123.17 533.45 29.142 202.29 24.749 8.941 21.169 5.603 0 1.357 45.334 -1270 +Jun 299.63 45.687 0 0 182.90 127.29 0 111.28 0 55.517 0 0 0 113.52 494.97 26.859 208.23 27.225 13.414 31.758 5.690 0 2.790 39.949 -1187 +Jul 261.34 148.86 0 0 158.69 47.654 0 120.13 0 57.368 0 0 0 120.23 533.84 28.448 226.68 24.748 10.804 25.579 6.244 0 0.360 46.561 -1295 +Aug 314.93 108.12 0 0 135.39 85.951 0 122.93 0 57.368 0 0 0 129.03 553.17 30.530 227.35 17.323 10.432 24.698 5.785 0 0.717 45.631 -1239 +Sep 405.55 0.172 0 0 193.72 91.887 0 101.56 0 55.517 0 1.092 0 139.06 564.10 32.903 206.32 32.174 10.433 24.700 5.617 0 0.991 42.265 -1097 +Oct 739.49 0 3.826 0 227.67 147.53 0 41.865 0.822 57.368 0 1.501 0 156.89 619.94 37.122 199.46 32.177 15.647 37.045 5.785 0 7.792 35.050 -888.0 +Nov 1462.9 0 301.74 70.348 258.06 218.56 0 0 66.051 55.595 0 35.896 0 164.68 624.81 39.004 177.10 32.176 10.804 25.580 6.865 0 3.235 21.614 -649.2 +Dec 2906.1 0 1074.4 257.09 209.50 312.45 0 0 237.43 57.368 0 60.463 0 175.95 662.23 41.632 173.44 24.748 14.531 34.404 7.345 0 2.271 10.767 -449.9 -Yr 13.436 0.303 3.781 0.772 2.625 2.081 0 0.554 0.834 0.675 0 0.256 0 1.725 6.914 0.408 2.320 0.332 0.141 0.334 0.0740 0 0.0368 0.390 -11.12 +Yr 13436 302.84 3781.0 772.48 2624.7 2081.3 0 554.14 834.00 675.46 0 256.18 0 1725.5 6914.3 408.27 2319.6 331.64 141.21 334.32 74.026 0 36.763 390.08 -11122 @@ -70,20 +94,20 @@ Monthly Energy Use, meter "MtrElecPV" Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ -Jan -0.407 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.407 -Feb -0.683 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.683 -Mar -0.881 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.881 -Apr -1.075 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.075 -May -1.270 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.270 -Jun -1.187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.187 -Jul -1.295 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.295 -Aug -1.239 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.239 -Sep -1.097 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.097 -Oct -0.888 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.888 -Nov -0.649 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.649 -Dec -0.450 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.450 +Jan -407.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -407.3 +Feb -682.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -682.5 +Mar -881.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -881.3 +Apr -1075 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1075 +May -1270 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1270 +Jun -1187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1187 +Jul -1295 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1295 +Aug -1239 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1239 +Sep -1097 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1097 +Oct -888.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -888.0 +Nov -649.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -649.2 +Dec -449.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -449.9 -Yr -11.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -11.12 +Yr -11122 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -11122 @@ -91,62 +115,264 @@ Monthly Energy Use, meter "MtrElec2" Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ -Jan -0.224 0 0 0 0 0 0 0 0 0 0 0 0 0 0.183 0 0 0 0 0 0 0 0 0 -0.407 -Feb -0.533 0 0 0 0 0 0 0 0 0 0 0 0 0 0.149 0 0 0 0 0 0 0 0 0 -0.683 -Mar -0.711 0 0 0 0 0 0 0 0 0 0 0 0 0 0.171 0 0 0 0 0 0 0 0 0 -0.881 -Apr -0.905 0 0 0 0 0 0 0 0 0 0 0 0 0 0.170 0 0 0 0 0 0 0 0 0 -1.075 -May -1.101 0 0 0 0 0 0 0 0 0 0 0 0 0 0.168 0 0 0 0 0 0 0 0 0 -1.270 -Jun -1.022 0 0 0 0 0 0 0 0 0 0 0 0 0 0.165 0 0 0 0 0 0 0 0 0 -1.187 -Jul -1.113 0 0 0 0 0 0 0 0 0 0 0 0 0 0.182 0 0 0 0 0 0 0 0 0 -1.295 -Aug -1.056 0 0 0 0 0 0 0 0 0 0 0 0 0 0.184 0 0 0 0 0 0 0 0 0 -1.239 -Sep -0.920 0 0 0 0 0 0 0 0 0 0 0 0 0 0.177 0 0 0 0 0 0 0 0 0 -1.097 -Oct -0.699 0 0 0 0 0 0 0 0 0 0 0 0 0 0.189 0 0 0 0 0 0 0 0 0 -0.888 -Nov -0.472 0 0 0 0 0 0 0 0 0 0 0 0 0 0.177 0 0 0 0 0 0 0 0 0 -0.649 -Dec -0.267 0 0 0 0 0 0 0 0 0 0 0 0 0 0.183 0 0 0 0 0 0 0 0 0 -0.450 +Jan -224.4 0 0 0 0 0 0 0 0 0 0 0 0 0 182.92 0 0 0 0 0 0 0 0 0 -407.3 +Feb -533.1 0 0 0 0 0 0 0 0 0 0 0 0 0 149.37 0 0 0 0 0 0 0 0 0 -682.5 +Mar -710.8 0 0 0 0 0 0 0 0 0 0 0 0 0 170.59 0 0 0 0 0 0 0 0 0 -881.3 +Apr -905.2 0 0 0 0 0 0 0 0 0 0 0 0 0 169.92 0 0 0 0 0 0 0 0 0 -1075 +May -1101 0 0 0 0 0 0 0 0 0 0 0 0 0 168.44 0 0 0 0 0 0 0 0 0 -1270 +Jun -1022 0 0 0 0 0 0 0 0 0 0 0 0 0 165.15 0 0 0 0 0 0 0 0 0 -1187 +Jul -1113 0 0 0 0 0 0 0 0 0 0 0 0 0 181.99 0 0 0 0 0 0 0 0 0 -1295 +Aug -1056 0 0 0 0 0 0 0 0 0 0 0 0 0 183.88 0 0 0 0 0 0 0 0 0 -1239 +Sep -919.5 0 0 0 0 0 0 0 0 0 0 0 0 0 177.44 0 0 0 0 0 0 0 0 0 -1097 +Oct -698.7 0 0 0 0 0 0 0 0 0 0 0 0 0 189.25 0 0 0 0 0 0 0 0 0 -888.0 +Nov -472.5 0 0 0 0 0 0 0 0 0 0 0 0 0 176.69 0 0 0 0 0 0 0 0 0 -649.2 +Dec -267.2 0 0 0 0 0 0 0 0 0 0 0 0 0 182.62 0 0 0 0 0 0 0 0 0 -449.9 -Yr -9.023 0 0 0 0 0 0 0 0 0 0 0 0 0 2.098 0 0 0 0 0 0 0 0 0 -11.12 +Yr -9023 0 0 0 0 0 0 0 0 0 0 0 0 0 2098.3 0 0 0 0 0 0 0 0 0 -11122 -Monthly Energy Use, meter "MtrNatGas" +Monthly Energy Use, meter "MtrElecPeak" Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ -Jan 0.353 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.223 0 0.129 0 0 0 0 -Feb 0.352 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.239 0 0.114 0 0 0 0 -Mar 0.404 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.277 0 0.127 0 0 0 0 -Apr 0.317 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.216 0 0.102 0 0 0 0 -May 0.290 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.185 0 0.105 0 0 0 0 -Jun 0.384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.277 0 0.107 0 0 0 0 -Jul 0.341 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.223 0 0.117 0 0 0 0 -Aug 0.324 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.216 0 0.109 0 0 0 0 -Sep 0.321 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.216 0 0.105 0 0 0 0 -Oct 0.432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.323 0 0.109 0 0 0 0 -Nov 0.352 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.223 0 0.129 0 0 0 0 -Dec 0.438 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.300 0 0.138 0 0 0 0 +Jan 489.16 0 147.72 6.539 51.721 72.411 0 0 32.075 11.952 0 8.462 0 52.694 162.31 7.441 41.534 4.949 2.438 7.438 4.050 0 0.579 -79.77 -45.37 +Feb 196.86 0 67.339 0.607 49.590 20.471 0 0 14.625 10.795 0 3.003 0 44.395 135.11 6.275 38.318 2.474 2.608 6.241 3.589 0 0.238 -134.6 -74.20 +Mar 90.435 0 12.188 0 61.729 39.137 0 0 2.641 11.952 0 0.682 0 45.167 143.40 6.383 44.877 6.950 4.587 10.220 4.006 0 0.671 -119.0 -185.2 +Apr -28.53 0 0.897 0 45.924 36.190 0 0 0.191 11.566 0 0.136 0 39.853 135.96 5.641 43.695 6.023 1.118 6.056 3.251 0 0.752 -119.5 -246.3 +May -92.72 0 0 0 41.424 12.007 0 13.212 0 11.952 0 0 0 37.196 131.84 5.252 48.537 0 1.909 5.533 3.298 0 0.0155 -122.9 -282.0 +Jun -66.82 31.835 0 0 31.044 0 0 16.166 0 11.566 0 0 0 34.282 122.14 4.853 49.559 6.023 4.296 12.229 3.419 0 0.0236 -117.6 -276.6 +Jul -73.94 105.85 0 0 35.936 11.222 0 27.366 0 11.952 0 0 0 36.310 131.55 5.136 53.494 3.402 0.846 3.334 3.732 0 0.104 -194.5 -309.7 +Aug -57.09 81.049 0 0 22.882 24.885 0 20.484 0 11.952 0 0 0 38.967 136.48 5.507 53.774 4.948 2.710 6.208 3.432 0 0.375 -187.4 -283.4 +Sep -43.18 0.0217 0 0 37.724 33.765 0 7.197 0 11.566 0 0 0 41.996 139.33 5.939 49.239 8.498 1.972 6.595 3.349 0 0.323 -169.9 -220.8 +Oct 68.144 0 0 0 39.609 35.733 0 8.111 0 11.952 0 0 0 47.381 153.07 6.702 47.810 9.899 3.629 9.918 3.458 0 4.859 -157.8 -156.2 +Nov 206.06 0 18.471 0.0403 55.176 41.326 0 0 3.995 11.566 0 1.774 0 49.709 154.67 7.010 42.634 9.229 2.481 5.293 3.998 0 0.508 -162.9 -38.90 +Dec 495.49 0 121.19 22.680 65.352 72.908 0 0 26.493 11.952 0 7.234 0 53.137 163.92 7.517 41.429 6.023 4.304 10.575 4.390 0 1.261 -91.74 -33.14 -Yr 4.309 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.919 0 1.390 0 0 0 0 +Yr 1183.9 218.76 367.81 29.867 538.11 400.05 0 92.536 80.020 140.72 0 21.292 0 521.09 1709.8 73.656 554.90 68.418 32.898 89.642 43.971 0 9.709 -1658 -2152 -Monthly Energy Use, meter "MtrElecPeak" +Monthly Energy Use, meter "MtrElecOffPeak" Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ -Jan 568.93 0 147.72 6.539 51.721 72.411 0 0 32.075 11.952 0 8.462 0 52.694 162.31 7.441 41.534 4.949 2.438 7.438 4.050 0 0.579 0 -45.37 -Feb 331.48 0 67.339 0.607 49.590 20.471 0 0 14.625 10.795 0 3.003 0 44.395 135.11 6.275 38.318 2.474 2.608 6.241 3.589 0 0.238 0 -74.20 -Mar 209.41 0 12.188 0 61.729 39.137 0 0 2.641 11.952 0 0.682 0 45.167 143.40 6.383 44.877 6.950 4.587 10.220 4.006 0 0.671 0 -185.2 -Apr 90.991 0 0.897 0 45.924 36.190 0 0 0.191 11.566 0 0.136 0 39.853 135.96 5.641 43.695 6.023 1.118 6.056 3.251 0 0.752 0 -246.3 -May 30.189 0 0 0 41.424 12.007 0 13.212 0 11.952 0 0 0 37.196 131.84 5.252 48.537 0 1.909 5.533 3.298 0 0.0155 0 -282.0 -Jun 50.808 31.835 0 0 31.044 0 0 16.166 0 11.566 0 0 0 34.282 122.14 4.853 49.559 6.023 4.296 12.229 3.419 0 0.0236 0 -276.6 -Jul 120.56 105.85 0 0 35.936 11.222 0 27.366 0 11.952 0 0 0 36.310 131.55 5.136 53.494 3.402 0.846 3.334 3.732 0 0.104 0 -309.7 -Aug 130.27 81.049 0 0 22.882 24.885 0 20.484 0 11.952 0 0 0 38.967 136.48 5.507 53.774 4.948 2.710 6.208 3.432 0 0.375 0 -283.4 -Sep 126.71 0.0217 0 0 37.724 33.765 0 7.197 0 11.566 0 0 0 41.996 139.33 5.939 49.239 8.498 1.972 6.595 3.349 0 0.323 0 -220.8 -Oct 225.97 0 0 0 39.609 35.733 0 8.111 0 11.952 0 0 0 47.381 153.07 6.702 47.810 9.899 3.629 9.918 3.458 0 4.859 0 -156.2 -Nov 368.98 0 18.471 0.0403 55.176 41.326 0 0 3.995 11.566 0 1.774 0 49.709 154.67 7.010 42.634 9.229 2.481 5.293 3.998 0 0.508 0 -38.90 -Dec 587.23 0 121.19 22.680 65.352 72.908 0 0 26.493 11.952 0 7.234 0 53.137 163.92 7.517 41.429 6.023 4.304 10.575 4.390 0 1.261 0 -33.14 +Jan 2511.8 0 1021.3 183.97 175.69 231.27 0 0 225.56 45.416 0 67.560 0 121.79 492.58 33.844 132.17 19.802 8.366 18.143 2.830 0 3.862 89.573 -361.9 +Feb 1994.0 0 791.06 212.38 201.57 261.65 0 0 175.61 41.021 0 46.815 0 102.61 409.06 28.508 120.13 19.801 8.942 21.103 2.460 0 4.079 155.57 -608.3 +Mar 807.18 0 127.84 6.245 234.83 133.25 0 0 28.120 45.339 0 8.189 0 104.32 434.84 28.952 140.61 27.697 8.826 21.536 2.747 0 1.194 148.80 -696.2 +Apr 803.80 0 232.74 35.302 198.76 157.01 0 0 50.876 43.951 0 17.880 0 92.110 414.57 25.583 137.38 28.626 9.315 18.646 2.159 0 5.875 161.85 -828.8 +May 273.99 0 0 0 197.55 86.527 0 43.160 0 45.416 0 4.504 0 85.970 401.60 23.890 153.75 24.749 7.032 15.636 2.305 0 1.341 168.24 -987.7 +Jun 366.45 13.852 0 0 151.85 127.29 0 95.116 0 43.951 0 0 0 79.235 372.84 22.007 158.67 21.202 9.118 19.529 2.271 0 2.767 157.58 -910.8 +Jul 335.28 43.004 0 0 122.76 36.432 0 92.763 0 45.416 0 0 0 83.923 402.29 23.312 173.19 21.347 9.958 22.245 2.512 0 0.256 241.06 -985.2 +Aug 372.02 27.073 0 0 112.50 61.066 0 102.45 0 45.416 0 0 0 90.064 416.69 25.023 173.58 12.375 7.722 18.489 2.354 0 0.342 232.99 -956.1 +Sep 448.74 0.150 0 0 156.00 58.122 0 94.361 0 43.951 0 1.092 0 97.063 424.77 26.964 157.08 23.676 8.461 18.105 2.268 0 0.667 212.16 -876.2 +Oct 671.35 0 3.826 0 188.06 111.80 0 33.754 0.822 45.416 0 1.501 0 109.51 466.87 30.419 151.65 22.278 12.018 27.127 2.328 0 2.934 192.87 -731.8 +Nov 1256.9 0 283.27 70.307 202.89 177.24 0 0 62.056 44.028 0 34.121 0 114.97 470.14 31.994 134.47 22.947 8.323 20.287 2.867 0 2.727 184.53 -610.3 +Dec 2410.6 0 953.18 234.41 144.14 239.54 0 0 210.94 45.416 0 53.229 0 122.81 498.31 34.115 132.01 18.725 10.228 23.829 2.955 0 1.010 102.51 -416.7 + +Yr 12252 84.080 3413.2 742.61 2086.6 1681.2 0 461.60 753.98 534.74 0 234.89 0 1204.4 5204.6 334.61 1764.7 263.23 108.31 244.67 30.055 0 27.054 2047.7 -8970 + + + +Monthly Energy Use, meter "MtrElecRecomb" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Jan 3001.0 0 1169.0 190.50 227.41 303.68 0 0 257.63 57.368 0 76.022 0 174.48 654.88 41.285 173.70 24.751 10.805 25.581 6.879 0 4.441 9.800 -407.3 +Feb 2190.9 0 858.40 212.99 251.16 282.12 0 0 190.24 51.816 0 49.817 0 147.00 544.17 34.783 158.45 22.275 11.549 27.344 6.049 0 4.317 20.950 -682.5 +Mar 897.62 0 140.03 6.245 296.55 172.39 0 0 30.761 57.291 0 8.872 0 149.49 578.24 35.336 185.49 34.647 13.413 31.756 6.753 0 1.865 29.828 -881.3 +Apr 775.28 0 233.64 35.302 244.68 193.20 0 0 51.068 55.517 0 18.016 0 131.96 550.53 31.224 181.08 34.649 10.433 24.701 5.410 0 6.627 42.330 -1075 +May 181.28 0 0 0 238.97 98.534 0 56.371 0 57.368 0 4.504 0 123.17 533.45 29.142 202.29 24.749 8.941 21.169 5.603 0 1.357 45.334 -1270 +Jun 299.63 45.687 0 0 182.90 127.29 0 111.28 0 55.517 0 0 0 113.52 494.97 26.859 208.23 27.225 13.414 31.758 5.690 0 2.790 39.949 -1187 +Jul 261.34 148.86 0 0 158.69 47.654 0 120.13 0 57.368 0 0 0 120.23 533.84 28.448 226.68 24.748 10.804 25.579 6.244 0 0.360 46.561 -1295 +Aug 314.93 108.12 0 0 135.39 85.951 0 122.93 0 57.368 0 0 0 129.03 553.17 30.530 227.35 17.323 10.432 24.698 5.785 0 0.717 45.631 -1239 +Sep 405.55 0.172 0 0 193.72 91.887 0 101.56 0 55.517 0 1.092 0 139.06 564.10 32.903 206.32 32.174 10.433 24.700 5.617 0 0.991 42.265 -1097 +Oct 739.49 0 3.826 0 227.67 147.53 0 41.865 0.822 57.368 0 1.501 0 156.89 619.94 37.122 199.46 32.177 15.647 37.045 5.785 0 7.792 35.050 -888.0 +Nov 1462.9 0 301.74 70.348 258.06 218.56 0 0 66.051 55.595 0 35.896 0 164.68 624.81 39.004 177.10 32.176 10.804 25.580 6.865 0 3.235 21.614 -649.2 +Dec 2906.1 0 1074.4 257.09 209.50 312.45 0 0 237.43 57.368 0 60.463 0 175.95 662.23 41.632 173.44 24.748 14.531 34.404 7.345 0 2.271 10.767 -449.9 + +Yr 13436 302.84 3781.0 772.48 2624.7 2081.3 0 554.14 834.00 675.46 0 256.18 0 1725.5 6914.3 408.27 2319.6 331.64 141.21 334.32 74.026 0 36.763 390.08 -11122 + + + +Monthly Energy Use, All Meters, Jan + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 3001.0 0 1169.0 190.50 227.41 303.68 0 0 257.63 57.368 0 76.022 0 174.48 654.88 41.285 173.70 24.751 10.805 25.581 6.879 0 4.441 9.800 -407.3 +MtrElecPeak 489.16 0 147.72 6.539 51.721 72.411 0 0 32.075 11.952 0 8.462 0 52.694 162.31 7.441 41.534 4.949 2.438 7.438 4.050 0 0.579 -79.77 -45.37 +MtrElecOffPeak 2511.8 0 1021.3 183.97 175.69 231.27 0 0 225.56 45.416 0 67.560 0 121.79 492.58 33.844 132.17 19.802 8.366 18.143 2.830 0 3.862 89.573 -361.9 +MtrElec 3001.0 0 1169.0 190.50 227.41 303.68 0 0 257.63 57.368 0 76.022 0 174.48 654.88 41.285 173.70 24.751 10.805 25.581 6.879 0 4.441 9.800 -407.3 +MtrElec2 -224.4 0 0 0 0 0 0 0 0 0 0 0 0 0 182.92 0 0 0 0 0 0 0 0 0 -407.3 +MtrElecPV -407.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -407.3 +MtrNatGas 352.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223.36 0 129.15 0 0 0 0 + +Sum 8723.8 0 3507.1 571.51 682.23 911.04 0 0 772.90 172.10 0 228.07 0 523.46 2147.6 123.85 521.10 74.253 255.77 76.743 149.79 0 13.323 29.400 -2036 + + +Monthly Energy Use, All Meters, Feb + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 2190.9 0 858.40 212.99 251.16 282.12 0 0 190.24 51.816 0 49.817 0 147.00 544.17 34.783 158.45 22.275 11.549 27.344 6.049 0 4.317 20.950 -682.5 +MtrElecPeak 196.86 0 67.339 0.607 49.590 20.471 0 0 14.625 10.795 0 3.003 0 44.395 135.11 6.275 38.318 2.474 2.608 6.241 3.589 0 0.238 -134.6 -74.20 +MtrElecOffPeak 1994.0 0 791.06 212.38 201.57 261.65 0 0 175.61 41.021 0 46.815 0 102.61 409.06 28.508 120.13 19.801 8.942 21.103 2.460 0 4.079 155.57 -608.3 +MtrElec 2190.9 0 858.40 212.99 251.16 282.12 0 0 190.24 51.816 0 49.817 0 147.00 544.17 34.783 158.45 22.275 11.549 27.344 6.049 0 4.317 20.950 -682.5 +MtrElec2 -533.1 0 0 0 0 0 0 0 0 0 0 0 0 0 149.37 0 0 0 0 0 0 0 0 0 -682.5 +MtrElecPV -682.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -682.5 +MtrNatGas 352.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 238.75 0 113.56 0 0 0 0 + +Sum 5709.4 0 2575.2 638.96 753.47 846.37 0 0 570.71 155.45 0 149.45 0 441.01 1781.9 104.35 475.35 66.825 273.40 82.032 131.71 0 12.950 62.851 -3413 + + +Monthly Energy Use, All Meters, Mar + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 897.62 0 140.03 6.245 296.55 172.39 0 0 30.761 57.291 0 8.872 0 149.49 578.24 35.336 185.49 34.647 13.413 31.756 6.753 0 1.865 29.828 -881.3 +MtrElecPeak 90.435 0 12.188 0 61.729 39.137 0 0 2.641 11.952 0 0.682 0 45.167 143.40 6.383 44.877 6.950 4.587 10.220 4.006 0 0.671 -119.0 -185.2 +MtrElecOffPeak 807.18 0 127.84 6.245 234.83 133.25 0 0 28.120 45.339 0 8.189 0 104.32 434.84 28.952 140.61 27.697 8.826 21.536 2.747 0 1.194 148.80 -696.2 +MtrElec 897.62 0 140.03 6.245 296.55 172.39 0 0 30.761 57.291 0 8.872 0 149.49 578.24 35.336 185.49 34.647 13.413 31.756 6.753 0 1.865 29.828 -881.3 +MtrElec2 -710.8 0 0 0 0 0 0 0 0 0 0 0 0 0 170.59 0 0 0 0 0 0 0 0 0 -881.3 +MtrElecPV -881.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -881.3 +MtrNatGas 404.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277.28 0 126.78 0 0 0 0 + +Sum 1504.8 0 420.09 18.736 889.66 517.18 0 0 92.282 171.87 0 26.615 0 448.46 1905.3 106.01 556.47 103.94 317.51 95.269 147.04 0 5.596 89.482 -4407 + + +Monthly Energy Use, All Meters, Apr + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 775.28 0 233.64 35.302 244.68 193.20 0 0 51.068 55.517 0 18.016 0 131.96 550.53 31.224 181.08 34.649 10.433 24.701 5.410 0 6.627 42.330 -1075 +MtrElecPeak -28.53 0 0.897 0 45.924 36.190 0 0 0.191 11.566 0 0.136 0 39.853 135.96 5.641 43.695 6.023 1.118 6.056 3.251 0 0.752 -119.5 -246.3 +MtrElecOffPeak 803.80 0 232.74 35.302 198.76 157.01 0 0 50.876 43.951 0 17.880 0 92.110 414.57 25.583 137.38 28.626 9.315 18.646 2.159 0 5.875 161.85 -828.8 +MtrElec 775.28 0 233.64 35.302 244.68 193.20 0 0 51.068 55.517 0 18.016 0 131.96 550.53 31.224 181.08 34.649 10.433 24.701 5.410 0 6.627 42.330 -1075 +MtrElec2 -905.2 0 0 0 0 0 0 0 0 0 0 0 0 0 169.92 0 0 0 0 0 0 0 0 0 -1075 +MtrElecPV -1075 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1075 +MtrNatGas 317.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 215.67 0 101.57 0 0 0 0 + +Sum 662.82 0 700.91 105.90 734.04 579.59 0 0 153.20 166.55 0 54.048 0 395.89 1821.5 93.672 543.23 103.95 246.97 74.103 117.80 0 19.881 126.99 -5375 + + +Monthly Energy Use, All Meters, May + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 181.28 0 0 0 238.97 98.534 0 56.371 0 57.368 0 4.504 0 123.17 533.45 29.142 202.29 24.749 8.941 21.169 5.603 0 1.357 45.334 -1270 +MtrElecPeak -92.72 0 0 0 41.424 12.007 0 13.212 0 11.952 0 0 0 37.196 131.84 5.252 48.537 0 1.909 5.533 3.298 0 0.0155 -122.9 -282.0 +MtrElecOffPeak 273.99 0 0 0 197.55 86.527 0 43.160 0 45.416 0 4.504 0 85.970 401.60 23.890 153.75 24.749 7.032 15.636 2.305 0 1.341 168.24 -987.7 +MtrElec 181.28 0 0 0 238.97 98.534 0 56.371 0 57.368 0 4.504 0 123.17 533.45 29.142 202.29 24.749 8.941 21.169 5.603 0 1.357 45.334 -1270 +MtrElec2 -1101 0 0 0 0 0 0 0 0 0 0 0 0 0 168.44 0 0 0 0 0 0 0 0 0 -1270 +MtrElecPV -1270 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1270 +MtrNatGas 290.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 184.84 0 105.19 0 0 0 0 + +Sum -1537 0 0 0 716.92 295.60 0 169.11 0 172.10 0 13.512 0 369.50 1768.8 87.427 606.87 74.248 211.66 63.508 122.00 0 4.070 136.00 -6348 + + +Monthly Energy Use, All Meters, Jun + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 299.63 45.687 0 0 182.90 127.29 0 111.28 0 55.517 0 0 0 113.52 494.97 26.859 208.23 27.225 13.414 31.758 5.690 0 2.790 39.949 -1187 +MtrElecPeak -66.82 31.835 0 0 31.044 0 0 16.166 0 11.566 0 0 0 34.282 122.14 4.853 49.559 6.023 4.296 12.229 3.419 0 0.0236 -117.6 -276.6 +MtrElecOffPeak 366.45 13.852 0 0 151.85 127.29 0 95.116 0 43.951 0 0 0 79.235 372.84 22.007 158.67 21.202 9.118 19.529 2.271 0 2.767 157.58 -910.8 +MtrElec 299.63 45.687 0 0 182.90 127.29 0 111.28 0 55.517 0 0 0 113.52 494.97 26.859 208.23 27.225 13.414 31.758 5.690 0 2.790 39.949 -1187 +MtrElec2 -1022 0 0 0 0 0 0 0 0 0 0 0 0 0 165.15 0 0 0 0 0 0 0 0 0 -1187 +MtrElecPV -1187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1187 +MtrNatGas 384.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277.29 0 106.82 0 0 0 0 + +Sum -926.8 137.06 0 0 548.69 381.86 0 333.85 0 166.55 0 0 0 340.55 1650.1 80.578 624.69 81.675 317.53 95.275 123.89 0 8.371 119.85 -5937 + + +Monthly Energy Use, All Meters, Jul + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 261.34 148.86 0 0 158.69 47.654 0 120.13 0 57.368 0 0 0 120.23 533.84 28.448 226.68 24.748 10.804 25.579 6.244 0 0.360 46.561 -1295 +MtrElecPeak -73.94 105.85 0 0 35.936 11.222 0 27.366 0 11.952 0 0 0 36.310 131.55 5.136 53.494 3.402 0.846 3.334 3.732 0 0.104 -194.5 -309.7 +MtrElecOffPeak 335.28 43.004 0 0 122.76 36.432 0 92.763 0 45.416 0 0 0 83.923 402.29 23.312 173.19 21.347 9.958 22.245 2.512 0 0.256 241.06 -985.2 +MtrElec 261.34 148.86 0 0 158.69 47.654 0 120.13 0 57.368 0 0 0 120.23 533.84 28.448 226.68 24.748 10.804 25.579 6.244 0 0.360 46.561 -1295 +MtrElec2 -1113 0 0 0 0 0 0 0 0 0 0 0 0 0 181.99 0 0 0 0 0 0 0 0 0 -1295 +MtrElecPV -1295 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1295 +MtrNatGas 340.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223.34 0 117.23 0 0 0 0 + +Sum -1283 446.57 0 0 476.07 142.96 0 360.39 0 172.10 0 0 0 360.70 1783.5 85.345 680.05 74.245 255.75 76.738 135.96 0 1.081 139.68 -6474 + + +Monthly Energy Use, All Meters, Aug + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 314.93 108.12 0 0 135.39 85.951 0 122.93 0 57.368 0 0 0 129.03 553.17 30.530 227.35 17.323 10.432 24.698 5.785 0 0.717 45.631 -1239 +MtrElecPeak -57.09 81.049 0 0 22.882 24.885 0 20.484 0 11.952 0 0 0 38.967 136.48 5.507 53.774 4.948 2.710 6.208 3.432 0 0.375 -187.4 -283.4 +MtrElecOffPeak 372.02 27.073 0 0 112.50 61.066 0 102.45 0 45.416 0 0 0 90.064 416.69 25.023 173.58 12.375 7.722 18.489 2.354 0 0.342 232.99 -956.1 +MtrElec 314.93 108.12 0 0 135.39 85.951 0 122.93 0 57.368 0 0 0 129.03 553.17 30.530 227.35 17.323 10.432 24.698 5.785 0 0.717 45.631 -1239 +MtrElec2 -1056 0 0 0 0 0 0 0 0 0 0 0 0 0 183.88 0 0 0 0 0 0 0 0 0 -1239 +MtrElecPV -1239 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1239 +MtrNatGas 324.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 215.64 0 108.61 0 0 0 0 + +Sum -1026 324.37 0 0 406.16 257.85 0 368.80 0 172.10 0 0 0 387.09 1843.4 91.590 682.05 51.970 246.94 74.093 125.97 0 2.152 136.89 -6197 -Yr 2841.5 218.76 367.81 29.867 538.11 400.05 0 92.536 80.020 140.72 0 21.292 0 521.09 1709.8 73.656 554.90 68.418 32.898 89.642 43.971 0 9.709 0 -2152 + +Monthly Energy Use, All Meters, Sep + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 405.55 0.172 0 0 193.72 91.887 0 101.56 0 55.517 0 1.092 0 139.06 564.10 32.903 206.32 32.174 10.433 24.700 5.617 0 0.991 42.265 -1097 +MtrElecPeak -43.18 0.0217 0 0 37.724 33.765 0 7.197 0 11.566 0 0 0 41.996 139.33 5.939 49.239 8.498 1.972 6.595 3.349 0 0.323 -169.9 -220.8 +MtrElecOffPeak 448.74 0.150 0 0 156.00 58.122 0 94.361 0 43.951 0 1.092 0 97.063 424.77 26.964 157.08 23.676 8.461 18.105 2.268 0 0.667 212.16 -876.2 +MtrElec 405.55 0.172 0 0 193.72 91.887 0 101.56 0 55.517 0 1.092 0 139.06 564.10 32.903 206.32 32.174 10.433 24.700 5.617 0 0.991 42.265 -1097 +MtrElec2 -919.5 0 0 0 0 0 0 0 0 0 0 0 0 0 177.44 0 0 0 0 0 0 0 0 0 -1097 +MtrElecPV -1097 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1097 +MtrNatGas 321.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 215.66 0 105.45 0 0 0 0 + +Sum -478.7 0.515 0 0 581.17 275.66 0 304.67 0 166.55 0 3.276 0 417.17 1869.7 98.708 618.96 96.521 246.96 74.100 122.30 0 2.972 126.79 -5485 + + +Monthly Energy Use, All Meters, Oct + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 739.49 0 3.826 0 227.67 147.53 0 41.865 0.822 57.368 0 1.501 0 156.89 619.94 37.122 199.46 32.177 15.647 37.045 5.785 0 7.792 35.050 -888.0 +MtrElecPeak 68.144 0 0 0 39.609 35.733 0 8.111 0 11.952 0 0 0 47.381 153.07 6.702 47.810 9.899 3.629 9.918 3.458 0 4.859 -157.8 -156.2 +MtrElecOffPeak 671.35 0 3.826 0 188.06 111.80 0 33.754 0.822 45.416 0 1.501 0 109.51 466.87 30.419 151.65 22.278 12.018 27.127 2.328 0 2.934 192.87 -731.8 +MtrElec 739.49 0 3.826 0 227.67 147.53 0 41.865 0.822 57.368 0 1.501 0 156.89 619.94 37.122 199.46 32.177 15.647 37.045 5.785 0 7.792 35.050 -888.0 +MtrElec2 -698.7 0 0 0 0 0 0 0 0 0 0 0 0 0 189.25 0 0 0 0 0 0 0 0 0 -888.0 +MtrElecPV -888.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -888.0 +MtrNatGas 432.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 323.46 0 108.61 0 0 0 0 + +Sum 1063.8 0 11.477 0 683.01 442.60 0 125.59 2.465 172.10 0 4.504 0 470.67 2049.1 111.37 598.38 96.531 370.40 111.14 125.97 0 23.377 105.15 -4440 + + +Monthly Energy Use, All Meters, Nov + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 1462.9 0 301.74 70.348 258.06 218.56 0 0 66.051 55.595 0 35.896 0 164.68 624.81 39.004 177.10 32.176 10.804 25.580 6.865 0 3.235 21.614 -649.2 +MtrElecPeak 206.06 0 18.471 0.0403 55.176 41.326 0 0 3.995 11.566 0 1.774 0 49.709 154.67 7.010 42.634 9.229 2.481 5.293 3.998 0 0.508 -162.9 -38.90 +MtrElecOffPeak 1256.9 0 283.27 70.307 202.89 177.24 0 0 62.056 44.028 0 34.121 0 114.97 470.14 31.994 134.47 22.947 8.323 20.287 2.867 0 2.727 184.53 -610.3 +MtrElec 1462.9 0 301.74 70.348 258.06 218.56 0 0 66.051 55.595 0 35.896 0 164.68 624.81 39.004 177.10 32.176 10.804 25.580 6.865 0 3.235 21.614 -649.2 +MtrElec2 -472.5 0 0 0 0 0 0 0 0 0 0 0 0 0 176.69 0 0 0 0 0 0 0 0 0 -649.2 +MtrElecPV -649.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -649.2 +MtrNatGas 352.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223.34 0 128.88 0 0 0 0 + +Sum 3619.4 0 905.21 211.04 774.18 655.68 0 0 198.15 166.78 0 107.69 0 494.05 2051.1 117.01 531.30 96.528 255.76 76.739 149.48 0 9.705 64.841 -3246 + + +Monthly Energy Use, All Meters, Dec + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 2906.1 0 1074.4 257.09 209.50 312.45 0 0 237.43 57.368 0 60.463 0 175.95 662.23 41.632 173.44 24.748 14.531 34.404 7.345 0 2.271 10.767 -449.9 +MtrElecPeak 495.49 0 121.19 22.680 65.352 72.908 0 0 26.493 11.952 0 7.234 0 53.137 163.92 7.517 41.429 6.023 4.304 10.575 4.390 0 1.261 -91.74 -33.14 +MtrElecOffPeak 2410.6 0 953.18 234.41 144.14 239.54 0 0 210.94 45.416 0 53.229 0 122.81 498.31 34.115 132.01 18.725 10.228 23.829 2.955 0 1.010 102.51 -416.7 +MtrElec 2906.1 0 1074.4 257.09 209.50 312.45 0 0 237.43 57.368 0 60.463 0 175.95 662.23 41.632 173.44 24.748 14.531 34.404 7.345 0 2.271 10.767 -449.9 +MtrElec2 -267.2 0 0 0 0 0 0 0 0 0 0 0 0 0 182.62 0 0 0 0 0 0 0 0 0 -449.9 +MtrElecPV -449.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -449.9 +MtrNatGas 438.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300.40 0 137.89 0 0 0 0 + +Sum 8439.5 0 3223.1 771.28 628.49 937.36 0 0 712.29 172.10 0 181.39 0 527.85 2169.3 124.90 520.31 74.243 343.99 103.21 159.92 0 6.812 32.302 -2249 @@ -154,39 +380,79 @@ Daily Energy Use, meter "MtrElecPeak", Jul Day Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ - 1 1.967 3.204 0 0 0 0 0 0.781 0 0.386 0 0 0 1.171 4.230 0.167 1.789 0 0 0 0.129 0 0 0 -9.889 - 2 10.535 9.296 0 0 0 0 0 2.195 0 0.386 0 0 0 1.171 4.230 0.167 1.814 0 0 0.882 0.129 0 0 0 -9.734 - 3 21.178 18.696 0 0 0 0 0 4.282 0 0.386 0 0 0 1.171 4.277 0.162 1.838 0 0 0 0.101 0 0 0 -9.735 - 4 19.443 17.351 0 0 0 0 0 4.015 0 0.386 0 0 0 1.171 4.277 0.162 1.849 0 0 0 0.101 0 0 0 -9.869 - 5 21.514 18.809 0 0 0 0 0 4.323 0 0.386 0 0 0 1.171 4.277 0.162 1.853 0 0 0 0.101 0 0 0 -9.567 - 6 21.730 15.603 0 0 4.145 0 0 3.782 0 0.386 0 0 0 1.171 4.230 0.167 1.804 0 0 0 0.129 0 0 0 -9.686 - 7 10.475 10.097 0 0 0 0 0 2.545 0 0.386 0 0 0 1.171 4.230 0.167 1.803 0 0 0 0.129 0 0 0 -10.05 - 8 14.233 10.173 0 0 3.569 0 0 2.457 0 0.386 0 0 0 1.171 4.230 0.167 1.802 0 0 0 0.129 0 0 0 -9.851 - 9 -2.587 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.744 0 0 0 0.129 0 0 0 -10.41 - 10 -2.405 0 0 0 0.0275 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.715 0 0 0 0.129 0 .00124 0 -10.23 - 11 -1.419 0 0 0 0 0 0 1.087 0 0.386 0 0 0 1.171 4.277 0.162 1.691 0 0 0 0.101 0 0 0 -10.29 - 12 2.009 0 0 0 4.130 0 0 0.251 0 0.386 0 0 0 1.171 4.277 0.162 1.658 0 0 0 0.101 0 0 0 -10.13 - 13 -1.243 0 0 0 0 0 0 0.585 0 0.386 0 0 0 1.171 4.230 0.167 1.606 0 0 0.882 0.129 0 0 0 -10.40 - 14 2.222 0 0 0 2.265 0 0 0.167 0 0.386 0 0 0 1.171 4.230 0.167 1.596 2.474 0 0 0.129 0 0 0 -10.36 - 15 -2.279 0 0 0 0 0 0 0.251 0 0.386 0 0 0 1.171 4.230 0.167 1.609 0 0 0 0.129 0 0 0 -10.22 - 16 0.607 0 0 0 2.894 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.595 0 0 0.241 0.129 0 0 0 -10.21 - 17 -2.615 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.609 0 0 0 0.129 0 0 0 -10.31 - 18 1.279 0 0 0 3.427 0 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.672 0 0 0 0.101 0 0 0 -9.916 - 19 -0.422 0 0 0 0.422 0.256 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.715 0 0.291 0.882 0.101 0 0.0470 0 -10.13 - 20 0.733 0 0 0 2.774 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.739 0 0 0 0.129 0 0 0 -9.862 - 21 1.511 1.120 0 0 2.107 0 0 0.274 0 0.386 0 0 0 1.171 4.230 0.167 1.775 0 0 0 0.129 0 0.0232 0 -9.871 - 22 -1.251 0.623 0 0 0 0 0 0.155 0 0.386 0 0 0 1.171 4.230 0.167 1.761 0 0 0 0.129 0 0 0 -9.872 - 23 -2.321 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.719 0 0 0 0.129 0 0 0 -10.12 - 24 -2.454 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.692 0 0 0 0.129 0 0 0 -10.23 - 25 10.661 0 0 0 2.032 10.966 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.694 0 0 0 0.101 0 0.0321 0 -10.16 - 26 0.333 0 0 0 2.406 0 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.740 0 0 0 0.101 0 0 0 -9.910 - 27 -0.967 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.756 0.927 0 0 0.129 0 0 0 -9.732 - 28 0.0978 0.881 0 0 0.864 0 0 0.216 0 0.386 0 0 0 1.171 4.230 0.167 1.762 0 0 0 0.129 0 0 0 -9.708 - 29 -1.810 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.745 0 0 0 0.129 0 0 0 -9.637 - 30 1.499 0 0 0 2.452 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.677 0 0.555 0.447 0.129 0 0 0 -9.714 - 31 0.307 0 0 0 2.421 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.676 0 0 0 0.129 0 .00062 0 -9.873 - -Mon 120.56 105.85 0 0 35.936 11.222 0 27.366 0 11.952 0 0 0 36.310 131.55 5.136 53.494 3.402 0.846 3.334 3.732 0 0.104 0 -309.7 + 1 -4.619 3.204 0 0 0 0 0 0.781 0 0.386 0 0 0 1.171 4.230 0.167 1.789 0 0 0 0.129 0 0 -6.586 -9.889 + 2 -3.241 9.296 0 0 0 0 0 2.195 0 0.386 0 0 0 1.171 4.230 0.167 1.814 0 0 0.882 0.129 0 0 -13.78 -9.734 + 3 8.528 18.696 0 0 0 0 0 4.282 0 0.386 0 0 0 1.171 4.277 0.162 1.838 0 0 0 0.101 0 0 -12.65 -9.735 + 4 7.376 17.351 0 0 0 0 0 4.015 0 0.386 0 0 0 1.171 4.277 0.162 1.849 0 0 0 0.101 0 0 -12.07 -9.869 + 5 7.737 18.809 0 0 0 0 0 4.323 0 0.386 0 0 0 1.171 4.277 0.162 1.853 0 0 0 0.101 0 0 -13.78 -9.567 + 6 7.954 15.603 0 0 4.145 0 0 3.782 0 0.386 0 0 0 1.171 4.230 0.167 1.804 0 0 0 0.129 0 0 -13.78 -9.686 + 7 -3.301 10.097 0 0 0 0 0 2.545 0 0.386 0 0 0 1.171 4.230 0.167 1.803 0 0 0 0.129 0 0 -13.78 -10.05 + 8 0.456 10.173 0 0 3.569 0 0 2.457 0 0.386 0 0 0 1.171 4.230 0.167 1.802 0 0 0 0.129 0 0 -13.78 -9.851 + 9 -5.426 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.744 0 0 0 0.129 0 0 -2.839 -10.41 + 10 -5.267 0 0 0 0.0275 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.715 0 0 0 0.129 0 .00124 -2.862 -10.23 + 11 -5.190 0 0 0 0 0 0 1.087 0 0.386 0 0 0 1.171 4.277 0.162 1.691 0 0 0 0.101 0 0 -3.771 -10.29 + 12 -2.954 0 0 0 4.130 0 0 0.251 0 0.386 0 0 0 1.171 4.277 0.162 1.658 0 0 0 0.101 0 0 -4.963 -10.13 + 13 -5.511 0 0 0 0 0 0 0.585 0 0.386 0 0 0 1.171 4.230 0.167 1.606 0 0 0.882 0.129 0 0 -4.268 -10.40 + 14 -2.188 0 0 0 2.265 0 0 0.167 0 0.386 0 0 0 1.171 4.230 0.167 1.596 2.474 0 0 0.129 0 0 -4.411 -10.36 + 15 -5.287 0 0 0 0 0 0 0.251 0 0.386 0 0 0 1.171 4.230 0.167 1.609 0 0 0 0.129 0 0 -3.008 -10.22 + 16 -4.884 0 0 0 2.894 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.595 0 0 0.241 0.129 0 0 -5.491 -10.21 + 17 -5.453 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.609 0 0 0 0.129 0 0 -2.838 -10.31 + 18 -4.576 0 0 0 3.427 0 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.672 0 0 0 0.101 0 0 -5.855 -9.916 + 19 -5.162 0 0 0 0.422 0.256 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.715 0 0.291 0.882 0.101 0 0.0470 -4.740 -10.13 + 20 -4.943 0 0 0 2.774 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.739 0 0 0 0.129 0 0 -5.677 -9.862 + 21 -4.940 1.120 0 0 2.107 0 0 0.274 0 0.386 0 0 0 1.171 4.230 0.167 1.775 0 0 0 0.129 0 0.0232 -6.451 -9.871 + 22 -1.092 0.623 0 0 0 0 0 0.155 0 0.386 0 0 0 1.171 4.230 0.167 1.761 0 0 0 0.129 0 0 0.159 -9.872 + 23 -5.197 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.719 0 0 0 0.129 0 0 -2.876 -10.12 + 24 -5.325 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.692 0 0 0 0.129 0 0 -2.871 -10.23 + 25 3.320 0 0 0 2.032 10.966 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.694 0 0 0 0.101 0 0.0321 -7.342 -10.16 + 26 -4.927 0 0 0 2.406 0 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.740 0 0 0 0.101 0 0 -5.259 -9.910 + 27 -4.837 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.756 0.927 0 0 0.129 0 0 -3.871 -9.732 + 28 -3.976 0.881 0 0 0.864 0 0 0.216 0 0.386 0 0 0 1.171 4.230 0.167 1.762 0 0 0 0.129 0 0 -4.074 -9.708 + 29 -4.729 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.745 0 0 0 0.129 0 0 -2.918 -9.637 + 30 -1.441 0 0 0 2.452 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.677 0 0.555 0.447 0.129 0 0 -2.940 -9.714 + 31 -4.846 0 0 0 2.421 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.676 0 0 0 0.129 0 .00062 -5.153 -9.873 + +Mon -73.94 105.85 0 0 35.936 11.222 0 27.366 0 11.952 0 0 0 36.310 131.55 5.136 53.494 3.402 0.846 3.334 3.732 0 0.104 -194.5 -309.7 + + + +Daily Energy Use, meter "MtrElecOffPeak", Jul + +Day Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 9.817 1.851 0 0 3.099 0 0 2.743 0 1.465 0 0 0 2.707 12.991 0.751 5.828 0 0.745 1.764 0.0729 0 0 8.074 -32.27 + 2 22.025 4.362 0 0 4.350 0 0 2.629 0 1.465 0 0 0 2.707 12.991 0.751 5.863 2.475 0.373 0 0.0729 0 0 15.265 -31.28 + 3 41.788 8.472 0 0 6.390 8.041 0 3.012 0 1.465 0 0 0 2.707 12.943 0.755 6.042 4.949 1.490 3.528 0.101 0 0.0215 14.138 -32.27 + 4 33.405 6.547 0 0 5.795 9.214 0 3.144 0 1.465 0 0 0 2.707 12.943 0.755 6.052 2.475 0 0 0.101 0 0 13.626 -31.42 + 5 18.701 7.197 0 0 0 0 0 3.058 0 1.465 0 0 0 2.707 12.943 0.755 6.091 0 0 0 0.101 0 0 15.265 -30.88 + 6 28.444 5.621 0 0 6.331 0 0 2.996 0 1.465 0 0 0 2.707 12.991 0.751 5.928 2.475 0.745 1.764 0.0729 0 0 15.265 -30.67 + 7 34.161 4.141 0 0 8.432 8.803 0 2.987 0 1.465 0 0 0 2.707 12.991 0.751 5.843 0 0.745 1.764 0.0729 0 0.111 15.265 -31.92 + 8 16.187 3.542 0 0 1.960 0 0 3.210 0 1.465 0 0 0 2.707 12.991 0.751 5.853 0 0 0 0.0729 0 0 15.265 -31.63 + 9 5.538 0 0 0 2.813 0 0 4.432 0 1.465 0 0 0 2.707 12.991 0.751 5.725 0 0.372 0.882 0.0729 0 0 6.931 -33.60 + 10 -1.381 0 0 0 1.805 0 0 4.097 0 1.465 0 0 0 2.707 12.991 0.751 5.547 0 0 0 0.0729 0 0 2.719 -33.54 + 11 5.595 0 0 0 3.309 0 0 4.850 0 1.465 0 0 0 2.707 12.943 0.755 5.539 0 0.373 0.882 0.101 0 0 6.043 -33.37 + 12 0.144 0 0 0 0 0 0 4.348 0 1.465 0 0 0 2.707 12.943 0.755 5.394 0 0 0 0.101 0 0.0106 5.272 -32.85 + 13 17.356 0 0 0 9.758 0 0 4.850 0 1.465 0 0 0 2.707 12.991 0.751 5.178 0 0.373 0 0.0729 0 0 5.179 -25.97 + 14 7.670 0 0 0 6.469 0 0 4.432 0 1.465 0 0 0 2.707 12.991 0.751 5.088 0 0.0950 0.882 0.0729 0 0 5.899 -33.18 + 15 1.805 0 0 0 1.272 0 0 4.181 0 1.465 0 0 0 2.707 12.991 0.751 5.114 0 0.277 0 0.0729 0 0 5.700 -32.73 + 16 -0.964 0 0 0 0.966 0 0 0 0 1.465 0 0 0 2.707 12.991 0.751 5.110 0 0.373 0.641 0.0729 0 0 6.242 -32.28 + 17 5.488 0 0 0 4.578 0 0 0 0 1.465 0 0 0 2.707 12.991 0.751 5.161 2.475 0 0 0.0729 0 0 7.822 -32.53 + 18 -1.257 0 0 0 2.659 0 0 0 0 1.465 0 0 0 2.707 12.943 0.755 5.363 0 0 0 0.101 0 0 4.554 -31.81 + 19 6.133 0 0 0 4.175 4.702 0 0 0 1.465 0 0 0 2.707 12.943 0.755 5.513 0 0.266 0.882 0.101 0 0.0148 5.055 -32.45 + 20 8.303 0 0 0 5.937 0 0 1.505 0 1.465 0 0 0 2.707 12.991 0.751 5.544 0 0.561 0.882 0.0729 0 0 7.165 -31.28 + 21 4.118 0.631 0 0 0.657 0 0 2.422 0 1.465 0 0 0 2.707 12.991 0.751 5.725 0 0 0 0.0729 0 0 7.939 -31.24 + 22 9.862 0.240 0 0 10.388 0 0 3.073 0 1.465 0 0 0 2.707 12.991 0.751 5.674 2.475 0 0 0.0729 0 0 1.329 -31.30 + 23 8.673 0 0 0 6.521 0 0 3.846 0 1.465 0 0 0 2.707 12.991 0.751 5.562 0 0.745 1.764 0.0729 0 0 4.365 -32.12 + 24 8.357 0 0 0 2.911 0 0 3.679 0 1.465 0 0 0 2.707 12.991 0.751 5.464 2.474 0.373 0.882 0.0729 0 0 7.199 -32.61 + 25 13.543 0 0 0 4.994 5.672 0 3.512 0 1.465 0 0 0 2.707 12.943 0.755 5.508 0 0.745 1.764 0.101 0 0.0957 5.931 -32.65 + 26 2.806 0 0 0 0 0 0 3.178 0 1.465 0 0 0 2.707 12.943 0.755 5.627 0 0 0 0.101 0 0 7.691 -31.66 + 27 8.836 0 0 0 7.686 0 0 2.425 0 1.465 0 0 0 2.707 12.991 0.751 5.596 1.548 0 0 0.0729 0 0 4.416 -30.82 + 28 6.966 0.401 0 0 1.480 0 0 2.781 0 1.465 0 0 0 2.707 12.991 0.751 5.708 0 0.745 1.764 0.0729 0 0 7.127 -31.03 + 29 7.203 0 0 0 6.182 0 0 3.763 0 1.465 0 0 0 2.707 12.991 0.751 5.620 0 0.373 0.882 0.0729 0 0 2.842 -30.44 + 30 6.192 0 0 0 1.834 0 0 3.763 0 1.465 0 0 0 2.707 12.991 0.751 5.497 0 0.190 1.317 0.0729 0 0 7.034 -31.43 + 31 -0.235 0 0 0 0 0 0 3.846 0 1.465 0 0 0 2.707 12.991 0.751 5.430 0 0 0 0.0729 0 .00253 4.447 -31.95 + +Mon 335.28 43.004 0 0 122.76 36.432 0 92.763 0 45.416 0 0 0 83.923 402.29 23.312 173.19 21.347 9.958 22.245 2.512 0 0.256 241.06 -985.2 @@ -209,17 +475,50 @@ Hr Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 16 -2.748 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.101 0.713 0.0110 0.346 0 0 0 0.0137 0 0 0 -4.009 - 17 2.309 3.247 0 0 0 0 0 0.718 0 0.0771 0 0 0 0.120 0.788 0.0174 0.364 0 0 0 0.0183 0 0 0 -3.041 - 18 6.325 5.399 0 0 0 0 0 1.227 0 0.0771 0 0 0 0.171 0.875 0.0349 0.375 0 0 0 0.0280 0 0 0 -1.862 - 19 7.662 5.308 0 0 0 0 0 1.227 0 0.0771 0 0 0 0.326 0.933 0.0440 0.377 0 0 0 0.0260 0 0 0 -0.656 + 16 -1.620 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.101 0.713 0.0110 0.346 0 0 0 0.0137 0 0 1.127 -4.009 + 17 0 3.247 0 0 0 0 0 0.718 0 0.0771 0 0 0 0.120 0.788 0.0174 0.364 0 0 0 0.0183 0 0 -2.309 -3.041 + 18 0.232 5.399 0 0 0 0 0 1.227 0 0.0771 0 0 0 0.171 0.875 0.0349 0.375 0 0 0 0.0280 0 0 -6.093 -1.862 + 19 2.287 5.308 0 0 0 0 0 1.227 0 0.0771 0 0 0 0.326 0.933 0.0440 0.377 0 0 0 0.0260 0 0 -5.375 -0.656 20 7.630 4.742 0 0 0 0 0 1.111 0 0.0771 0 0 0 0.454 0.968 0.0551 0.376 0 0 0 0.0145 0 0 0 -0.167 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Day 21.178 18.696 0 0 0 0 0 4.282 0 0.386 0 0 0 1.171 4.277 0.162 1.838 0 0 0 0.101 0 0 0 -9.735 +Day 8.528 18.696 0 0 0 0 0 4.282 0 0.386 0 0 0 1.171 4.277 0.162 1.838 0 0 0 0.101 0 0 -12.65 -9.735 + + + +Hourly Energy Use, meter "MtrElecOffPeak", Fri 03-Jul + +Hr Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 1.159 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0892 0.638 0.0422 0.312 0 0 0 .00101 0 0 0 0 + 2 1.075 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0737 0.588 0.0422 0.293 0 0 0 .00081 0 0 0 0 + 3 1.021 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0582 0.558 0.0413 0.287 0 0 0 .00060 0 0 0 0 + 4 1.020 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0659 0.557 0.0413 0.278 0 0 0 .00060 0 0 0 0 + 5 1.006 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0814 0.531 0.0422 0.274 0 0 0 .00060 0 0 0 0 + 6 1.081 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.120 0.569 0.0413 0.272 0 0 0 .00101 0 0 0 0 + 7 3.483 0 0 0 0.704 1.280 0 0.502 0 0.0771 0 0 0 0.163 0.629 0.0404 0.284 0 0 0 .00201 0 0.0215 0 -0.219 + 8 7.961 0 0 0 0.819 6.762 0 0.334 0 0.0771 0 0 0 0.159 0.675 0.0376 0.296 0 0 0 .00544 0 0 0 -1.205 + 9 0.410 0 0 0 1.244 0 0 0 0 0.0771 0 0 0 0.132 0.650 0.0330 0.318 0 0 0.446 .00967 0 0 0 -2.499 + 10 0 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.112 0.637 0.0275 0.324 0 0.188 0.878 .00967 0 0 1.386 -3.641 + 11 0 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.105 0.648 0.0220 0.325 0 0.371 0.440 .00927 0 0 2.519 -4.515 + 12 0 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0970 0.637 0.0147 0.336 0 0.186 0.882 0.0111 0 0 2.811 -5.051 + 13 0 0 0 0 1.041 0 0 0 0 0.0771 0 0 0 0.0814 0.634 0.0110 0.346 0 0.372 0.882 0.0127 0 0 1.796 -5.254 + 14 0 0 0 0 1.474 0 0 0 0 0.0771 0 0 0 0.0814 0.652 0.0101 0.346 0 0.372 0 0.0119 0 0 2.112 -5.138 + 15 0 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0814 0.680 0.0101 0.345 0 0 0 0.0125 0 0 3.514 -4.720 + 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 21 5.860 3.147 0 0 0 0 0 0.763 0 0.0771 0 0 0 0.438 1.002 0.0762 0.375 0 0 0 .00645 0 0 0 -.0246 + 22 4.457 2.040 0 0 0 0 0 0.522 0 0.0771 0 0 0 0.372 0.995 0.0899 0.358 0 0 0 .00282 0 0 0 0 + 23 6.590 1.947 0 0 0 0 0 0.521 0 0.0771 0 0 0 0.244 0.897 0.0780 0.349 2.474 0 0 .00181 0 0 0 0 + 24 6.665 1.338 0 0 1.108 0 0 0.370 0 0.0771 0 0 0 0.151 0.767 0.0541 0.324 2.475 0 0 .00101 0 0 0 0 + +Day 41.788 8.472 0 0 6.390 8.041 0 3.012 0 1.465 0 0 0 2.707 12.943 0.755 6.042 4.949 1.490 3.528 0.101 0 0.0215 14.138 -32.27 @@ -2473,7 +2772,7 @@ LMClgPeak daily for Jul ! Log for Run 001: -! CSE 0.921.0+apple-clang.ab748d58.102 for Win32 console +! CSE 0.921.0+battery-submeter.fe0a7d96.136.dirty for Win32 console @@ -3546,7 +3845,9 @@ Input for Run 001: matCond = 0.09167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F matCondCT = 0.000122 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + METER "MtrElecRecomb" mtrSubmeters=MtrElecPeak, MtrElecOffPeak // should match MtrElec METER "MtrElecPeak" mtrSubmeters=MtrElec mtrSubMeterMults= tofloat( $hour > 15 && $hour < 21) + METER "MtrElecOffPeak" mtrSubmeters=MtrElec mtrSubMeterMults= tofloat( $hour <= 15 || $hour >= 21) METER "MtrElec" mtrSubmeters=MtrElec2 METER "MtrElec2" mtrSubmeters=MtrElecPV METER "MtrElecPV" @@ -5160,14 +5461,23 @@ Input for Run 001: # REPORTCOL colVal = @Rsys[s].AFUE colHead="AFUE" colDec=3 colWid=6 SYSINFHEAT( 1) - REPORT rpType=MTR rpMeter=MtrElec rpFreq=MONTH - REPORT rpType=MTR rpMeter=MtrElecPV rpFreq=MONTH - REPORT rpType=MTR rpMeter=MtrElec2 rpFreq=MONTH - REPORT rpType=MTR rpMeter=MtrNatGas rpFreq=MONTH + REPORT rpType=MTR rpMeter=MtrNatGas rpBtuSf=1000. rpFreq=MONTH + + REPORT rpType=MTR rpMeter=MtrElec rpBtuSf=1000. rpFreq=MONTH + REPORT rpType=MTR rpMeter=MtrElecPV rpBtuSf=1000. rpFreq=MONTH + REPORT rpType=MTR rpMeter=MtrElec2 rpBtuSf=1000. rpFreq=MONTH REPORT rpType=MTR rpMeter=MtrElecPeak rpBtuSf=1000. rpFreq=Month + REPORT rpType=MTR rpMeter=MtrElecOffPeak rpBtuSf=1000. rpFreq=Month + REPORT rpType=MTR rpMeter=MtrElecRecomb rpBtuSf=1000. rpFreq=Month + + REPORT rpType=MTR rpMeter=ALL rpBtuSf=1000. rpFreq=Month + REPORT rpType=MTR rpMeter=MtrElecPeak rpBtuSf=1000. rpFreq=Day rpDayBeg = jul 1 rpDayEnd = Jul 31 + REPORT rpType=MTR rpMeter=MtrElecOffPeak rpBtuSf=1000. rpFreq=Day rpDayBeg = jul 1 rpDayEnd = Jul 31 + REPORT rpType=MTR rpMeter=MtrElecPeak rpBtuSf=1000. rpFreq=Hour rpDayBeg = jul 3 rpDayEnd = Jul 3 + REPORT rpType=MTR rpMeter=MtrElecOffPeak rpBtuSf=1000. rpFreq=Hour rpDayBeg = jul 3 rpDayEnd = Jul 3 REPORT rpType=MTR rpMeter=MtrElec rpBtuSf=1000. rpFreq=Hour rpDayBeg = jul 3 rpDayEnd = Jul 3 // report columns: RSYS cooling subhour details @@ -5254,16 +5564,25 @@ Input for Run 001: RUN $EOF ----------------------- -??? SUBMETER.CSE(7119): Warning: +??? SUBMETER.CSE(5609): Info: +??? meter 'MtrElec': Duplicate reference from meter 'MtrElecRecomb' +----------------------- +??? SUBMETER.CSE(5610): Info: +??? meter 'MtrElec2': Duplicate reference from meter 'MtrElecRecomb' +----------------------- +??? SUBMETER.CSE(5611): Info: +??? meter 'MtrElecPV': Duplicate reference from meter 'MtrElecRecomb' +----------------------- +??? SUBMETER.CSE(7121): Info: ??? LOADMETER 'LMHtg': Duplicate reference from LOADMETER 'LMCancel' ----------------------- -??? SUBMETER.CSE(7120): Warning: +??? SUBMETER.CSE(7122): Info: ??? LOADMETER 'LMClg': Duplicate reference from LOADMETER 'LMCancel' ----------------------- -! CSE 0.921.0+apple-clang.ab748d58.102 for Win32 console run(s) done: Wed 28-Feb-24 12:16:32 pm +! CSE 0.921.0+battery-submeter.fe0a7d96.136.dirty for Win32 console run(s) done: Wed 27-Mar-24 11:31:04 am ! Executable: /users/neal-kruis/projects/cse/builds/clion-release/cse-appleclang-64 ! ? (enExeInfo fail) (HPWH 1.23.0+HEAD.f90302f.61) @@ -5273,8 +5592,8 @@ Input for Run 001: ! Timing info -- -! Input: Time = 1.00 Calls = 2 T/C = 0.4990 -! AutoSizing: Time = 0.65 Calls = 1 T/C = 0.6450 -! Simulation: Time = 7.79 Calls = 1 T/C = 7.7950 -! Reports: Time = 0.00 Calls = 1 T/C = 0.0040 -! Total: Time = 9.44 Calls = 1 T/C = 9.4430 +! Input: Time = 1.22 Calls = 2 T/C = 0.6115 +! AutoSizing: Time = 0.86 Calls = 1 T/C = 0.8620 +! Simulation: Time = 11.00 Calls = 1 T/C = 11.0010 +! Reports: Time = 0.01 Calls = 1 T/C = 0.0050 +! Total: Time = 13.09 Calls = 1 T/C = 13.0920 diff --git a/test/ref-win32-msvc/ASHPPKGROOM.REP b/test/ref-win32-msvc/ASHPPKGROOM.REP index ca6f4dd88..540031e52 100644 --- a/test/ref-win32-msvc/ASHPPKGROOM.REP +++ b/test/ref-win32-msvc/ASHPPKGROOM.REP @@ -443,1569 +443,7 @@ Energy Balance (F, kBtu, + into the zone) for Fri 10-Jul ! Log for Run 001: -CULT Input Tables -================= - - -Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 4096 0 0 0 nz 0 nz nz - doAutoSize 6 3 0 0 1 16 nz 0 0 0 - doMainSim 6 4 0 0 1 16 nz 0 0 0 - begDay 6 5 0 0 1 28672 nz 0 0 0 - endDay 6 6 0 0 1 28672 nz 0 0 0 - jan1DoW 6 8 16384 0 1 16 nz 0 0 0 - wuDays 6 10 16384 0 1 1 nz 0 0 0 - nSubSteps 6 11 16384 0 1 1 nz 0 0 0 - nSubhrTicks 6 181 0 0 1 1 0 0 0 0 - wfName 6 12 16392 0 3 4 0 0 0 0 - TDVfName 6 13 0 0 3 4 0 0 0 0 - elevation 6 14 0 0 3 2 0 0 0 0 - refTemp 6 15 0 0 3 2 0 60 0 0 - refRH 6 16 0 0 3 2 0 0.6 0 0 - grndRefl 6 17 0 0 355 2 0 0.2 0 0 - grndEmit 6 18 0 0 1 2 0 0.8 0 0 - grndRf 6 19 0 0 1 2 0 0.1 0 0 - soilDiff 6 20 0 0 1 2 0 0.025 0 0 - soilCond 6 21 0 0 1 2 0 1 0 0 - soilSpHt 6 22 0 0 1 2 0 0.1 0 0 - soilDens 6 23 0 0 1 2 0 115 0 0 - farFieldWidth 6 24 0 0 1 2 0 130 0 0 - deepGrndCnd 6 25 0 0 1 16 nz 0 0 0 - deepGrndDepth 6 26 0 0 1 2 0 130 0 0 - deepGrndT 6 27 0 0 739 2 0 50 0 0 - tol 6 28 0 0 1 2 0 0.001 0 0 - humTolF 6 29 0 0 1 2 0 0.0001 0 0 - unMetTzTol 6 35 0 0 1 2 0 1 0 0 - unMetTzTolWarnHrs 6 36 0 0 1 2 0 150 0 0 - ebTolMon 6 30 16384 0 1 2 0 0.0001 0 0 - ebTolDay 6 31 16384 0 1 2 0 0.0001 0 0 - ebTolHour 6 32 16384 0 1 2 0 0.0001 0 0 - ebTolSubhr 6 33 16384 0 1 2 0 0.0001 0 0 - grndMinDim 6 37 0 0 1 2 0 0.066 0 0 - grndMaxGrthCoeff 6 38 0 0 1 2 0 1.5 0 0 - grndTimeStep 6 39 0 0 1 16 nz 0 0 0 - AWTrigT 6 40 0 0 1 2 0 1 0 0 - AWTrigSlr 6 41 0 0 1 2 0 0.05 0 0 - AWTrigH 6 42 0 0 1 2 0 0.1 0 0 - ANTolAbs 6 43 0 0 1 2 0 0.00125 0 0 - ANTolRel 6 44 0 0 1 2 0 0.0001 0 0 - ANPressWarn 6 45 0 0 1 2 0 10 0 0 - ANPressErr 6 46 0 0 1 2 0 30 0 0 - bldgAzm 6 47 0 0 1 2 0 0 0 0 - skymodel 6 48 16384 0 1 16 nz 0 0 0 - skymodelLW 6 49 0 0 1 16 nz 0 0 0 - exShadeModel 6 50 0 0 1 16 nz 0 0 0 - slrInterpMeth 6 51 0 0 1 16 nz 0 0 0 - humMeth 6 52 0 0 1 16 nz 0 0 0 - dflExH 6 53 0 0 1 2 0 2.64 0 0 - workDayMask 6 54 0 0 1 1 nz 0 0 0 - DT 6 55 16384 0 1 16 nz 0 0 0 - DTbegDay 6 56 0 0 1 28672 0 0 0 0 - DTendDay 6 57 0 0 1 28672 0 0 0 0 - terrainClass 6 60 0 0 1 1 nz 0 0 0 - windSpeedMin 6 58 0 0 1 2 0 0.5 0 0 - windF 6 59 0 0 1 2 0 1 0 0 - radBeamF 6 61 0 0 1 2 0 1 0 0 - radDiffF 6 62 0 0 1 2 0 1 0 0 - hConvMod 6 65 0 0 1 16 nz 0 0 0 - verbose 6 66 0 0 1 1 nz 0 0 0 - dbgPrintMask 6 67 0 0 739 32 0 0 0 0 - dbgPrintMaskC 6 68 16384 0 1 32 0 0 0 0 - dbgFlag 6 69 0 0 1763 32 0 0 0 0 - doCoverage 6 70 0 0 1 16 nz 0 0 0 - ventAvail 6 63 0 0 739 16 nz 0 0 0 - auszTol 6 71 0 0 1 2 0 0.005 0 0 - heatDsTDbO 6 72 16384 0 739 2 0 0 0 0 - heatDsTWbO 6 73 0 0 739 2 0 0 0 0 - coolDsMo 6 74 128 0 1 1 0 0 nz 0 - coolDsDay 6 87 16512 0 1 28672 0 0 nz 0 - coolDsCond 6 100 128 0 1 8192 DESCOND 0 0 nz 0 - runSerial 6 119 0 0 1 1 0 0 0 0 - runTitle 6 120 0 0 1 4 0 0 0 0 - repHdrL 6 127 16384 0 1 4 0 0 0 0 - repHdrR 6 128 0 0 1 4 0 0 0 0 - repCpl 6 129 0 0 1 1 nz 0 0 0 - repLpp 6 130 0 0 1 1 nz 0 0 0 - repTopM 6 131 0 0 1 1 nz 0 0 0 - repBotM 6 132 0 0 1 1 nz 0 0 0 - repTestPfx 6 133 0 0 1 4 0 0 0 0 - ck5aa5 6 288 4 0 0 1 nz 0 0 0 - material 5 0 16400 0 0 0 material 0 0 494 0 - construction 5 0 16400 0 0 0 construction 0 0 483 0 - foundation 5 0 16 0 0 0 foundation 0 0 471 0 - glazeType 5 0 16 0 0 0 glazeType 0 0 46a 0 - zone 5 0 16400 0 0 0 zone 0 0 344 0 - izXfer 5 0 16384 0 0 0 izXfer 0 0 2e5 0 - afmeter 5 0 16 0 0 0 AFMETER 0 0 243 0 - loadmeter 5 0 16 0 0 0 LOADMETER 0 0 240 0 - rsys 5 0 16400 0 0 0 RSYS 0 0 2a5 0 - doas 5 0 16 0 0 0 doas 0 0 317 0 - dhwdayuse 5 0 16 0 0 0 DHWDayUse 0 0 22f 0 - dhwmeter 5 0 16 0 0 0 DHWMETER 0 0 246 0 - dhwsys 5 0 0 0 0 0 DHWSYS 0 0 1ac 0 - dhwsolarsys 5 0 16 0 0 0 DHWSolarSys 0 0 14f 0 - pvarray 5 0 0 0 0 0 PVArray 0 0 13f 0 - battery 5 0 0 0 0 0 Battery 0 0 12b 0 - shadex 5 0 0 0 0 0 SHADEX 0 0 11c 0 - airHandler 5 0 16 0 0 0 airHandler 0 0 117 0 - meter 5 0 16400 0 0 0 meter 0 0 3ae 0 - gain 5 0 32 0 0 0 gain 0 0 3a7 0 - reportCol 5 0 32 0 0 0 reportCol 0 0 397 0 - exportCol 5 0 32 0 0 0 exportCol 0 0 38d 0 - report 5 0 32 0 0 0 report 0 0 384 0 - export 5 0 32 0 0 0 export 0 0 36e 0 - reportfile 5 0 0 0 0 0 reportFile 0 0 359 0 - exportfile 5 0 0 0 0 0 exportFile 0 0 352 0 - importfile 5 0 16 0 0 0 importFile 0 0 34c 0 - heatPlant 5 0 16 0 0 0 heatPlant 0 0 7a 0 - coolPlant 5 0 16 0 0 0 coolPlant 0 0 4b 0 - towerPlant 5 0 16 0 0 0 towerPlant 0 0 3d 0 - holiday 5 0 16 0 0 0 holiday 0 0 1e 0 - descond 5 0 16 0 0 0 DESCOND 0 0 16 0 - inverse 5 0 16 0 0 0 Inverse 0 0 9 0 - run 12 0 0 0 0 0 0 0 0 nz - clear 9 0 4096 0 0 0 nz 0 nz 0 - - -material Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - matThk 6 2 8192 0 1 2 0 -1 0 0 - matCond 6 3 16392 0 1 2 0 0 0 0 - matCondT 6 4 0 0 1 2 0 70 0 0 - matCondCT 6 5 0 0 1 2 0 0 0 0 - matSpHt 6 6 16384 0 1 2 0 0 0 0 - matDens 6 7 16384 0 1 2 0 0 0 0 - matRNom 6 8 0 0 1 2 0 -1 0 0 - endMaterial 13 0 0 0 0 0 0 0 0 0 - - -construction Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - conU 6 2 0 0 1 2 0 0 0 0 - layer 5 0 16384 0 0 0 layer 0 0 8 0 - endConstruction 13 0 0 0 0 0 0 0 0 0 - - -layer Parent: construction - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - lrCon 6 1 5 0 0 12288 construction 0 0 0 0 - lrThk 6 2 16384 0 1 2 0 0 0 0 - lrMat 6 3 16392 0 1 8192 material 0 0 0 0 - lrFrmMat 6 4 0 0 1 8192 material 0 0 0 0 - lrFrmFrac 6 5 0 0 1 2 0 0 0 0 - endLayer 13 0 0 0 0 0 0 0 0 0 - - -foundation Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - fdWlHtAbvGrd 6 2 0 0 1 2 0 0 0 0 - fdWlDpBlwSlb 6 3 0 0 1 2 0 0 0 0 - fdFtCon 6 4 0 0 1 8192 construction 0 0 0 0 - fndblock 5 0 0 0 0 0 foundationBlock 0 0 d 0 - endFoundation 13 0 0 0 0 0 0 0 0 0 - - -fndblock Parent: foundation - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - fbFnd 6 1 5 0 0 12288 foundation 0 0 0 0 - fbMat 6 2 8 0 1 8192 material 0 0 0 0 - fbX1Ref 6 3 0 0 1 16 nz 0 0 0 - fbZ1Ref 6 4 0 0 1 16 nz 0 0 0 - fbX1 6 5 0 0 1 2 0 0 0 0 - fbZ1 6 6 0 0 1 2 0 0 0 0 - fbX2Ref 6 7 0 0 1 16 nz 0 0 0 - fbZ2Ref 6 8 0 0 1 16 nz 0 0 0 - fbX2 6 9 0 0 1 2 0 0 0 0 - fbZ2 6 10 0 0 1 2 0 0 0 0 - endFndBlock 13 0 0 0 1 0 0 0 0 0 - - -glazeType Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - gtSHGC 6 2 8 0 1 2 0 0 0 0 - gtSMSO 6 3 0 0 355 2 0 1 0 0 - gtSMSC 6 4 0 0 355 2 0 0 0 0 - gtFMult 6 5 0 0 0 2 0 1 0 0 - gtPySHGC 6 7 128 0 1 2 0 0 nz 0 - gtDMSHGC 6 12 0 0 1 2 0 0 0 0 - gtDMRBSol 6 13 0 0 1 2 0 0 0 0 - gtU 6 14 0 0 1 2 0 0 0 0 - gtUNFRC 6 15 0 0 1 2 0 0 0 0 - gtModel 6 17 0 0 1 16 nz 0 0 0 - gtNGlz 6 16 0 0 1 1 nz 0 0 0 - gtExShd 6 18 0 0 1 16 nz 0 0 0 - gtInShd 6 19 0 0 1 16 nz 0 0 0 - gtDirtLoss 6 20 0 0 1 2 0 0 0 0 - endGlazeType 13 0 0 0 1 0 0 0 0 0 - - -zone Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - znModel 6 2 24576 0 1 16 nz 0 0 0 - znArea 6 3 16392 0 1 2 0 0 0 0 - znVol 6 4 16392 0 1 2 0 0 0 0 - znFloorZ 6 5 0 0 1 2 0 0 0 0 - znCeilingHt 6 6 0 0 1 2 0 0 0 0 - znCAir 6 7 16384 0 1 2 0 0 0 0 - znHIRatio 6 9 0 0 1 2 0 1 0 0 - znAzm 6 10 0 0 1 2 0 0 0 0 - znSC 6 12 0 0 739 2 0 0 0 0 - znTH 6 13 0 0 1763 2 0 0 0 0 - znTD 6 14 0 0 1763 2 0 -1 0 0 - znTC 6 15 0 0 1763 2 0 0 0 0 - znQMxH 6 16 0 0 739 2 0 0 0 0 - znQMxHRated 6 17 1024 0 1 2 0 0 0 0 - znQMxC 6 18 0 0 739 2 0 0 0 0 - znQMxCRated 6 19 0 0 1 2 0 0 0 0 - znRsys 6 21 0 0 1 8192 RSYS 0 0 0 0 - znLoadMtr 6 20 0 0 1 8192 LOADMETER 0 0 0 0 - znHcFrcF 6 22 0 0 739 2 0 0.2 0 0 - znHcAirX 6 23 0 0 1763 2 0 1 0 0 - infAC 6 57 16384 0 739 2 0 0.5 0 0 - infELA 6 58 16384 0 739 2 0 0 0 0 - infShld 6 59 16384 0 1 1 nz 0 0 nz - infStories 6 60 0 0 1 1 nz 0 0 nz - znEaveZ 6 61 0 0 1 2 0 8 0 0 - znWindFLkg 6 62 0 0 1763 2 0 1 0 0 - znAFMtr 6 63 0 0 1 8192 AFMETER 0 0 0 0 - xfanFOn 6 25 0 0 739 2 0 1 0 0 - xfanVfDs 6 27 0 0 1 2 0 0 0 0 - xfanPress 6 31 0 0 1 2 0 0.3 0 0 - xfanEff 6 32 0 0 1 2 0 0.08 0 0 - xfanShaftBhp 6 33 0 0 1 2 0 0 0 0 - xfanElecPwr 6 34 0 0 1 2 0 0 0 0 - xfanMtr 6 44 0 0 1 8192 meter 0 0 0 0 - xfanType 6 26 4 0 0 16 nz 0 0 0 - xfanVfMxF 6 30 4 0 0 2 0 1 0 0 - xfanMotPos 6 37 4 0 0 16 nz 0 0 0 - xfanCurvePy 6 38 132 0 1 2 0 0 nz 0 - xfanMotEff 6 36 4 0 0 2 0 1 0 0 - surface 5 0 16384 0 0 0 surface 0 0 c4 0 - perimeter 5 0 0 0 0 0 perimeter 0 0 99 0 - terminal 5 0 0 0 0 0 terminal 0 0 90 0 - gain 5 0 0 0 0 0 gain 0 0 63 0 - endZone 13 0 0 0 0 0 0 0 0 0 - - -surface Parent: zone - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - sfXtype 6 2 4 0 0 1 nz 0 0 0 - sfZone 6 1 5 0 0 12288 zone 0 0 0 0 - sfType 6 214 16392 0 0 16 0 0 0 0 - sfArea 6 211 16392 0 1 2 0 0 0 0 - sfTilt 6 5 0 0 1 2 0 0 0 0 - sfAzm 6 4 16384 0 1 2 0 0 0 0 - sfModel 6 11 16384 0 0 16 nz 0 0 0 - sfDepthBG 6 9 0 0 1 2 0 0 0 0 - sfHeight 6 10 0 0 1 2 0 0 0 0 - sfCon 6 213 16384 0 1 8192 construction 0 0 0 0 - sfU 6 212 0 0 1 2 0 0 0 0 - sfLThkF 6 13 0 0 1 2 0 0.5 0 0 - sfInH 6 148 0 0 1 2 0 1.5 0 0 - sfExH 6 150 0 0 1 2 0 1.5 0 0 - sfExCnd 6 145 16384 0 0 16 nz 0 0 0 - sfExT 6 146 0 0 1763 2 0 0 0 0 - sfExT 6 146 0 0 739 2 0 0 0 0 - sfExAbs 6 77 0 0 355 2 0 0.5 0 0 - sfExRf 6 151 0 0 1 2 0 1 0 0 - sfInAbs 6 17 0 0 355 2 0 0.5 0 0 - sfExEpsLW 6 79 0 0 1 2 0 0.9 0 0 - sfInEpsLW 6 19 0 0 1 2 0 0.9 0 0 - sfExHcModel 6 119 0 0 0 16 nz 0 0 0 - sfExHcLChar 6 120 0 0 1 2 0 10 0 0 - sfExHcMult 6 88 0 0 1763 2 0 1 0 0 - sfFnd 6 215 0 0 1 8192 foundation 0 0 0 0 - sfExpPerim 6 217 0 0 1 2 0 0 0 0 - sfFndFloor 6 216 0 0 1 8192 surface 0 0 0 0 - sfExCTaDbAvgYr 6 125 0 0 1 2 0 0 0 0 - sfExCTaDbAvg31 6 126 0 0 1 2 0 0 0 0 - sfExCTaDbAvg14 6 127 0 0 1 2 0 0 0 0 - sfExCTaDbAvg07 6 128 0 0 1 2 0 0 0 0 - sfExCTGrnd 6 129 0 0 1 2 0 0 0 0 - sfExRConGrnd 6 131 0 0 1 2 0 0 0 0 - sfInHcModel 6 59 0 0 0 16 nz 0 0 0 - sfInHcMult 6 28 0 0 1763 2 0 1 0 0 - sfAdjZn 6 147 0 0 1 8192 zone 0 0 0 0 - sfGrndRefl 6 152 0 0 355 2 0 0 0 0 - window 5 0 0 0 0 0 window 0 0 39 0 - door 5 0 0 0 0 0 door 0 0 16 0 - endSurface 13 0 0 0 0 0 0 0 0 0 - - -window Parent: surface - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - gzXtype 6 2 4 0 0 1 nz 0 0 0 - gzSurf 6 1 5 0 0 12288 surface 0 0 0 0 - wnArea 6 211 16384 0 1 2 0 0 0 0 - wnWidth 6 218 16392 0 1 2 0 0 0 0 - wnHeight 6 219 16392 0 1 2 0 0 0 0 - wnMult 6 220 16384 0 1 2 0 1 0 0 - wnGt 6 14 0 0 1 8192 glazeType 0 0 0 0 - wnSHGC 6 138 16384 0 1 2 0 0 0 0 - wnFMult 6 139 16384 0 1 2 0 1 0 0 - wnUNFRC 6 140 16384 0 1 2 0 0 0 0 - wnModel 6 137 16384 0 0 16 nz 0 0 0 - wnNGlz 6 141 16384 0 1 1 nz 0 0 0 - wnExShd 6 142 16384 0 1 16 nz 0 0 0 - wnInShd 6 143 16384 0 1 16 nz 0 0 0 - wnDirtLoss 6 144 16384 0 1 2 0 0 0 0 - wnU 6 212 0 0 1 2 0 0 0 0 - wnInH 6 148 0 0 1 2 0 10000 0 0 - wnExH 6 150 0 0 1 2 0 0 0 0 - wnExEpsLW 6 79 0 0 1 2 0 0.84 0 0 - wnInEpsLW 6 19 0 0 1 2 0 0.84 0 0 - wnExHcModel 6 119 0 0 0 16 nz 0 0 0 - wnExHcLChar 6 120 0 0 1 2 0 10 0 0 - wnExHcMult 6 88 0 0 1763 2 0 1 0 0 - wnInHcModel 6 59 0 0 0 16 nz 0 0 0 - wnInHcMult 6 28 0 0 1763 2 0 1 0 0 - wnSMSO 6 15 0 0 355 2 0 1 0 0 - wnSMSC 6 16 0 0 355 2 0 0 0 0 - wnGrndRefl 6 152 0 0 355 2 0 0 0 0 - wnVfSkyDf 6 153 0 0 355 2 0 0 0 0 - wnVfGrndDf 6 154 0 0 355 2 0 0 0 0 - sgdist 5 0 0 0 0 0 sgdist 0 0 18 0 - shade 5 0 0 0 0 0 shade 0 0 10 0 - endWindow 13 0 0 0 0 0 0 0 0 0 - - -sgdist Parent: window - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 12288 0 0 0 0 0 nz 0 - sgWindow 6 1 5 0 0 12288 window 0 0 0 0 - sgSurf 6 4 8 0 1 8192 surface 0 0 0 0 - sgSide 6 2 0 0 1 16 0 0 0 0 - sgFSO 6 5 8 0 355 2 0 0 0 0 - sgFSC 6 6 0 0 355 2 0 0 0 0 - endSgdist 13 0 0 0 0 0 0 0 0 0 - - -shade Parent: window - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - shWindow 6 1 8197 0 0 12288 window 0 0 0 0 - ohDepth 6 4 0 0 355 2 0 0 0 0 - ohDistUp 6 5 0 0 355 2 0 0 0 0 - ohExL 6 6 0 0 355 2 0 0 0 0 - ohExR 6 7 0 0 355 2 0 0 0 0 - ohFlap 6 8 0 0 355 2 0 0 0 0 - lfDepth 6 9 0 0 355 2 0 0 0 0 - lfTopUp 6 10 0 0 355 2 0 0 0 0 - lfDistL 6 11 0 0 355 2 0 0 0 0 - lfBotUp 6 12 0 0 355 2 0 0 0 0 - rfDepth 6 13 0 0 355 2 0 0 0 0 - rfTopUp 6 14 0 0 355 2 0 0 0 0 - rfDistR 6 15 0 0 355 2 0 0 0 0 - rfBotUp 6 16 0 0 355 2 0 0 0 0 - endShade 13 0 0 0 0 0 0 0 0 0 - - -door Parent: surface - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - drXtype 6 2 4 0 0 1 nz 0 0 0 - drSurf 6 1 5 0 0 12288 surface 0 0 0 0 - drArea 6 211 16392 0 1 2 0 0 0 0 - drModel 6 11 0 0 1 16 nz 0 0 0 - drCon 6 213 0 0 1 8192 construction 0 0 0 0 - drU 6 212 16384 0 1 2 0 0 0 0 - drLThkF 6 13 0 0 1 2 0 0.5 0 0 - drInH 6 148 0 0 1 2 0 0 0 0 - drExH 6 150 0 0 1 2 0 0 0 0 - drExAbs 6 77 0 0 355 2 0 0.5 0 0 - drExRf 6 151 0 0 1 2 0 1 0 0 - drInAbs 6 17 0 0 355 2 0 0.5 0 0 - drExEpsLW 6 79 0 0 1 2 0 0.9 0 0 - drInEpsLW 6 19 0 0 1 2 0 0.9 0 0 - drExHcModel 6 119 0 0 0 16 nz 0 0 0 - drExHcLChar 6 120 0 0 1 2 0 10 0 0 - drExHcMult 6 88 0 0 1763 2 0 1 0 0 - drInHcModel 6 59 0 0 0 16 nz 0 0 0 - drInHcMult 6 28 0 0 1763 2 0 1 0 0 - endDoor 13 0 0 0 0 0 0 0 0 0 - - -perimeter Parent: zone - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - * 3 0 0 0 0 0 0 0 0 0 - prZone 6 1 5 0 0 8192 zone 0 0 0 0 - prXtype 6 2 4 0 0 1 nz 0 0 0 - prXExCnd 6 145 4 0 0 16 nz 0 0 0 - prLen 6 210 8 0 1 2 0 0 0 0 - prF2 6 211 8 0 1 2 0 0 0 0 - endPerimeter 13 0 0 0 0 0 0 0 0 0 - - -terminal Parent: zone - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 12288 0 0 0 0 0 nz 0 - tuZone 6 1 5 0 0 12288 zone 0 0 0 0 - tuTLh 6 68 0 0 739 2 0 0 0 0 - tuQMnLh 6 69 0 0 739 2 0 0 0 0 - tuQMxLh 6 70 0 0 739 2 0 0 0 0 - tuPriLh 6 71 0 0 3 1 nz 0 0 0 - tuLhNeedsFlow 6 72 0 0 3 16 nz 0 0 0 - tuhcType 6 73 0 0 3 16 nz 0 0 0 - tuhcCaptRat 6 75 1024 0 3 2 0 0 0 0 - tuhcFxCap 6 3 0 0 3 2 0 1.1 0 0 - tuhcHeatplant 6 99 0 0 1 8192 heatPlant 0 0 0 0 - tuhcMtr 6 80 0 0 1 8192 meter 0 0 0 0 - tuTH 6 104 0 0 739 2 0 0 0 0 - tuTC 6 105 0 0 739 2 0 0 0 0 - tuVfMn 6 106 1024 0 739 2 0 0 0 0 - tuAh 6 109 0 0 1 8192 airHandler 0 0 0 0 - tuVfMxH 6 110 1024 0 739 2 0 0 0 0 - tuVfMxC 6 113 1024 0 739 2 0 0 0 0 - tuVfDs 6 116 0 0 3 2 0 0 0 0 - tuVfMxHC 6 2 0 0 3 16 nz 0 0 0 - tuFxVfHC 6 4 0 0 3 2 0 1.1 0 0 - tuPriH 6 117 0 0 3 1 nz 0 0 0 - tuPriC 6 118 0 0 3 1 nz 0 0 0 - tuSRLeak 6 119 0 0 3 2 0 0.05 0 0 - tuSRLoss 6 120 0 0 3 2 0 0.1 0 0 - tfanSched 6 121 0 0 739 16 nz 0 0 0 - tfanOffLeak 6 122 0 0 3 2 0 0.1 0 0 - tfanType 6 123 0 0 3 16 nz 0 0 0 - tfanVfDs 6 124 0 0 3 2 0 0 0 0 - tfanPress 6 128 0 0 3 2 0 0.3 0 0 - tfanEff 6 129 0 0 3 2 0 0.08 0 0 - tfanMtr 6 141 0 0 1 8192 meter 0 0 0 0 - tfanVfMxF 6 127 4 0 0 2 0 1 0 0 - tfanMotPos 6 134 4 0 0 16 nz 0 0 0 - tfanCurvePy 6 135 128 0 3 2 0 0 nz 0 - tfanMotEff 6 133 4 0 0 2 0 1 0 0 - endTerminal 13 0 0 0 0 0 0 0 0 0 - - -gain Parent: zone - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - gnZone 6 1 2 0 1 8192 zone 0 0 0 0 - gnPower 6 2 16392 0 739 2 0 0 0 0 - gnMeter 6 3 16384 0 1 8192 meter 0 0 0 0 - gnEndUse 6 4 16384 0 3 16 0 0 0 0 - gnFrLat 6 5 0 0 739 2 0 0 0 0 - gnFrRad 6 6 0 0 739 2 0 0 0 0 - gnFrZn 6 7 16384 0 739 2 0 1 0 0 - gnFrPl 6 8 0 0 739 2 0 0 0 0 - gnFrRtn 6 9 0 0 739 2 0 0 0 0 - gnDlFrPow 6 10 0 0 739 2 0 1 0 0 - gnCtrlDHWSYS 6 11 0 0 1 8192 DHWSYS 0 0 0 0 - gnCtrlDHWMETER 6 12 0 0 1 8192 DHWMETER 0 0 0 0 - gnCtrlDHWEndUse 6 13 0 0 1 16 nz 0 0 0 - endGain 13 0 0 0 0 0 0 0 0 0 - - -izXfer Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - izZn1 6 2 16392 0 1 8192 zone 0 0 0 0 - izZn2 6 3 0 0 1 8192 zone 0 0 0 0 - izDOAS 6 4 0 0 1 8192 doas 0 0 0 0 - izHConst 6 5 0 0 739 2 0 0 0 0 - izNVType 6 6 16384 0 1 16 nz 0 0 0 - izAFCat 6 7 0 0 1 16 0 0 0 0 - izLinkedFlowMult 6 24 0 0 1 2 0 1 0 0 - izALo 6 10 16384 0 739 2 0 0 0 0 - izAHi 6 11 0 0 739 2 0 0 0 0 - izL1 6 12 0 0 1 2 0 0 0 0 - izL2 6 13 0 0 1 2 0 0 0 0 - izStairAngle 6 15 0 0 1 2 0 34 0 0 - izHD 6 14 16384 0 1 2 0 0 0 0 - izNVEff 6 16 16384 0 1 2 0 0.8 0 0 - izCpr 6 18 16384 0 1 2 0 0 0 0 - izExp 6 17 16384 0 1 2 0 0.5 0 0 - izVfMin 6 19 0 0 1763 2 0 0 0 0 - izVfMax 6 20 0 0 1763 2 0 0 0 0 - izTEx 6 21 0 0 1763 2 0 0 0 0 - izWEx 6 22 0 0 1763 2 0 0 0 0 - izWindSpeed 6 23 0 0 1763 2 0 0 0 0 - izASEF 6 25 0 0 1763 2 0 0 0 0 - izLEF 6 26 0 0 1763 2 0 0 0 0 - izSRE 6 27 0 0 1763 2 0 0 0 0 - izASRE 6 28 0 0 1763 2 0 0 0 0 - izRVFanHeatF 6 29 0 0 1763 2 0 0 0 0 - izVfExhRat 6 30 0 0 1763 2 0 1 0 0 - izEATR 6 31 0 0 1763 2 0 0 0 0 - izFanVfDs 6 33 0 0 1 2 0 0 0 0 - izFanPress 6 37 0 0 1 2 0 0.3 0 0 - izFanEff 6 38 0 0 1 2 0 0.08 0 0 - izFanShaftBhp 6 39 0 0 1 2 0 0 0 0 - izFanElecPwr 6 40 0 0 1 2 0 0 0 0 - izFanMtr 6 50 0 0 1 8192 meter 0 0 0 0 - izFanEndUse 6 51 0 0 1 16 nz 0 0 0 - izFanType 6 32 4 0 0 16 nz 0 0 0 - izFanVfMxF 6 36 4 0 0 2 0 1 0 0 - izFanMotPos 6 43 4 0 0 16 nz 0 0 0 - izFanCurvePy 6 44 128 0 1 2 0 0 nz 0 - izFanMotEff 6 42 4 0 0 2 0 1 0 0 - endIzxfer 13 0 0 0 0 0 0 0 0 0 - - -afmeter Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - endAFMETER 13 0 0 0 0 0 0 0 0 0 - - -loadmeter Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - lmtSubMeters 6 2 128 0 1 8192 LOADMETER 0 0 nz 0 - lmtSubMeterMults 6 53 128 0 1763 2 0 1 nz 0 - endLOADMETER 13 0 0 0 0 0 0 0 0 0 - - -rsys Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - rsType 6 2 16384 0 1 16 nz 0 0 0 - rsDesc 6 3 0 0 1 4 0 0 0 0 - rsPerfMap 6 4 0 0 1 16 nz 0 0 0 - rsFanTy 6 19 0 0 1 16 nz 0 0 0 - rsFanMotTy 6 28 0 0 1 16 nz 0 0 0 - rsAdjForFanHt 6 50 0 0 1 16 nz 0 0 0 - rsModeCtrl 6 226 0 0 739 16 nz 0 0 0 - rsElecMtr 6 7 16384 0 1 8192 meter 0 0 0 0 - rsFuelMtr 6 8 16384 0 1 8192 meter 0 0 0 0 - rsLoadMtr 6 9 0 0 1 8192 LOADMETER 0 0 0 0 - rsHtgLoadMtr 6 10 0 0 1 8192 LOADMETER 0 0 0 0 - rsClgLoadMtr 6 11 0 0 1 8192 LOADMETER 0 0 0 0 - rsSrcSideLoadMtr 6 12 0 0 1 8192 LOADMETER 0 0 0 0 - rsHtgSrcSideLoadMtr 6 13 0 0 1 8192 LOADMETER 0 0 0 0 - rsClgSrcSideLoadMtr 6 14 0 0 1 8192 LOADMETER 0 0 0 0 - rsTdDesH 6 69 0 0 1 2 0 50 0 0 - rsTdDesC 6 70 0 0 1 2 0 -25 0 0 - rsFxCapH 6 75 16384 0 1 2 0 1.4 0 0 - rsFxCapAuxH 6 79 16384 0 1 2 0 1 0 0 - rsFxCapC 6 77 16384 0 1 2 0 1.2 0 0 - rsAFUE 6 147 0 0 1 2 0 0 0 0 - rsCapH 6 148 1024 0 7 2 0 0 0 0 - rsCapRatCH 6 163 0 0 1 2 0 0.8 0 0 - rsHSPF 6 110 0 0 1 2 0 0 0 0 - rsCap47 6 111 17408 0 7 2 0 0 0 0 - rsCOP47 6 112 16384 0 1 2 0 0 0 0 - rsCap35 6 113 0 0 1 2 0 0 0 0 - rsCOP35 6 114 0 0 1 2 0 0 0 0 - rsCap17 6 115 0 0 1 2 0 0 0 0 - rsCOP17 6 116 0 0 1 2 0 0 0 0 - rsCap05 6 117 0 0 1 2 0 0 0 0 - rsCOP05 6 118 0 0 1 2 0 0 0 0 - rsCapRat1747 6 119 0 0 1 2 0 0 0 0 - rsCapRat9547 6 121 0 0 1 2 0 0 0 0 - rsCapRat0547 6 120 0 0 1 2 0 0 0 0 - rsloadFMin47 6 122 0 0 1 2 0 1 0 0 - rsloadFMin17 6 123 0 0 1 2 0 1 0 0 - rsloadFMin05 6 124 0 0 1 2 0 1 0 0 - rsCOPMin47 6 125 0 0 1 2 0 0 0 0 - rsCOPMin35 6 126 0 0 1 2 0 0 0 0 - rsCOPMin17 6 127 0 0 1 2 0 0 0 0 - rsCOPMin05 6 128 0 0 1 2 0 0 0 0 - rsCdH 6 129 0 0 1 2 0 0 0 0 - rsTypeAuxH 6 138 0 0 1 16 nz 0 0 0 - rsCtrlAuxH 6 139 0 0 1 16 nz 0 0 0 - rsCapAuxH 6 140 17408 0 1 2 0 0 0 0 - rsAFUEAuxH 6 142 0 0 1 2 0 1 0 0 - rsASHPLockOutT 6 145 0 0 739 2 0 -999 0 0 - rsDefrostModel 6 146 16384 0 1 16 nz 0 0 0 - rsCHDHWSYS 6 164 0 0 1 8192 DHWSYS 0 0 0 0 - rsFanPwrH 6 152 0 0 1 2 0 0.365 0 0 - rsSEER 6 171 0 0 1 2 0 0 0 0 - rsEER 6 170 16384 0 1 2 0 0 0 0 - rsCOP95 6 169 0 0 1 2 0 0 0 0 - rsCapC 6 166 17408 0 7 2 0 0 0 0 - rsCap115 6 172 0 0 1 2 0 0 0 0 - rsCOP115 6 173 0 0 1 2 0 0 0 0 - rsCap82 6 175 0 0 1 2 0 0 0 0 - rsCOP82 6 176 0 0 1 2 0 0 0 0 - rsCapRat11595 6 174 0 0 1 2 0 0.9155 0 0 - rsCapRat8295 6 177 0 0 1 2 0 1.06 0 0 - rsloadFMin115 6 178 0 0 1 2 0 1 0 0 - rsloadFMin95 6 179 0 0 1 2 0 1 0 0 - rsloadFMin82 6 180 0 0 1 2 0 1 0 0 - rsCOPMin115 6 181 0 0 1 2 0 0 0 0 - rsCOPMin95 6 182 0 0 1 2 0 0 0 0 - rsCOPMin82 6 183 0 0 1 2 0 0 0 0 - rsFChg 6 196 0 0 1 2 0 1 0 0 - rsCdC 6 189 0 0 1 2 0 0 0 0 - rsVFPerTon 6 184 16384 0 1 2 0 350 0 0 - rsFanPwrC 6 185 0 0 1 2 0 0.365 0 0 - rsSHRtarget 6 195 0 0 1763 2 0 0.7 0 0 - rsParElec 6 15 0 0 739 2 0 0 0 0 - rsParFuel 6 16 0 0 739 2 0 0 0 0 - rsFEffH 6 221 0 0 1763 2 0 1 0 0 - rsFEffAuxHBackup 6 222 0 0 1763 2 0 1 0 0 - rsFEffAuxHDefrost 6 223 0 0 1763 2 0 1 0 0 - rsFEffC 6 224 0 0 1763 2 0 1 0 0 - rsRhIn 6 190 0 0 739 2 0 0 0 0 - rsTdbOut 6 225 0 0 1763 2 0 0 0 0 - rsDSEH 6 65 0 0 739 2 0 -1 0 0 - rsDSEC 6 66 0 0 739 2 0 -1 0 0 - rsCapNomH 6 17 0 0 227 2 0 0 0 0 - rsCapNomC 6 18 0 0 227 2 0 0 0 0 - rsOAVType 6 211 0 0 1 16 nz 0 0 0 - rsOAVReliefZn 6 212 0 0 1 8192 zone 0 0 0 0 - rsOAVTDbInlet 6 213 0 0 739 2 0 0 0 0 - rsOAVTdiff 6 214 0 0 739 2 0 5 0 0 - rsOAVVfDs 6 215 0 0 1 2 0 0 0 0 - rsOAVVfMinF 6 217 0 0 1 2 0 0.2 0 0 - rsOAVFanPwr 6 216 0 0 1 2 0 0.5 0 0 - ductSeg 5 0 0 0 0 0 DuctSeg 0 0 15 0 - endRSYS 13 0 0 0 0 0 0 0 0 0 - - -ductSeg Parent: rsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - dsRSys 6 1 5 0 0 8192 RSYS 0 0 0 0 - dsTy 6 2 8 0 1 16 nz 0 0 0 - dsBranchLen 6 37 0 0 1 2 0 -1 0 0 - dsBranchCount 6 38 0 0 1 1 nz 0 0 0 - dsBranchCFA 6 39 0 0 1 2 nz 0 0 0 - dsAirVelDs 6 40 0 0 1 2 0 -1 0 0 - dsExArea 6 34 0 0 1 2 0 0 0 0 - dsInArea 6 41 0 0 1 2 0 0 0 0 - dsDiameter 6 35 0 0 1 2 0 0 0 0 - dsLength 6 36 0 0 1 2 0 0 0 0 - dsExCnd 6 52 0 0 0 16 nz 0 0 0 - dsAdjZn 6 6 0 0 1 8192 zone 0 0 0 0 - dsExT 6 28 0 0 1763 2 0 70 0 0 - dsEpsLW 6 5 0 0 1 2 0 0.9 0 0 - dsInsulR 6 42 0 0 1 2 0 0 0 0 - dsInsulMat 6 43 0 0 1 8192 material 0 0 0 0 - dsLeakF 6 53 0 0 1 2 0 0 0 0 - dsExH 6 15 0 0 1763 2 0 0.54 0 0 - endDuctSeg 13 0 0 0 0 0 0 0 0 0 - - -doas Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - oaSupFanVfDs 6 3 0 0 1 2 0 0 0 0 - oaSupFanPress 6 7 0 0 1 2 0 0.3 0 0 - oaSupFanEff 6 8 0 0 1 2 0 0.08 0 0 - oaSupFanShaftBhp 6 9 0 0 1 2 0 0 0 0 - oaSupFanElecPwr 6 10 0 0 1 2 0 0 0 0 - oaSupFanMtr 6 20 0 0 1 8192 meter 0 0 0 0 - oaSupFanEndUse 6 21 0 0 1 16 nz 0 0 0 - oaSupFanType 6 2 4 0 0 16 nz 0 0 0 - oaSupFanVfMxF 6 6 4 0 0 2 0 1 0 0 - oaSupFanMotPos 6 13 4 0 0 16 nz 0 0 0 - oaSupFanCurvePy 6 14 128 0 1 2 0 0 nz 0 - oaSupFanMotEff 6 12 4 0 0 2 0 1 0 0 - oaExhFanVfDs 6 34 0 0 1 2 0 0 0 0 - oaExhFanPress 6 38 0 0 1 2 0 0.3 0 0 - oaExhFanEff 6 39 0 0 1 2 0 0.08 0 0 - oaExhFanShaftBhp 6 40 0 0 1 2 0 0 0 0 - oaExhFanElecPwr 6 41 0 0 1 2 0 0 0 0 - oaExhFanMtr 6 51 0 0 1 8192 meter 0 0 0 0 - oaExhFanEndUse 6 52 0 0 1 16 nz 0 0 0 - oaExhFanType 6 33 4 0 0 16 nz 0 0 0 - oaExhFanVfMxF 6 37 4 0 0 2 0 1 0 0 - oaExhFanMotPos 6 44 4 0 0 16 nz 0 0 0 - oaExhFanCurvePy 6 45 128 0 1 2 0 0 nz 0 - oaExhFanMotEff 6 43 4 0 0 2 0 1 0 0 - oaSupTH 6 64 0 0 1763 2 0 65 0 0 - oaEIRH 6 65 0 0 1763 2 0 1 0 0 - oaCoilHMtr 6 66 0 0 1 8192 meter 0 0 0 0 - oaSupTC 6 67 0 0 1763 2 0 68 0 0 - oaEIRC 6 68 0 0 1763 2 0 1 0 0 - oaSHRtarget 6 69 0 0 1763 2 0 1 0 0 - oaCoilCMtr 6 70 0 0 1 8192 meter 0 0 0 0 - oaLoadMtr 6 71 0 0 1 8192 LOADMETER 0 0 0 0 - oaTEx 6 72 0 0 1763 2 0 0 0 0 - oaWEx 6 73 0 0 1763 2 0 0 0 0 - oaHXVfDs 6 74 0 0 1 2 0 0 0 0 - oaHXf2 6 75 0 0 1 2 0 0.75 0 0 - oaHXSenEffHDs 6 76 0 0 1 2 0 0 0 0 - oaHXSenEffHf2 6 77 0 0 1 2 0 0 0 0 - oaHXLatEffHDs 6 78 0 0 1 2 0 0 0 0 - oaHXLatEffHf2 6 79 0 0 1 2 0 0 0 0 - oaHXSenEffCDs 6 80 0 0 1 2 0 0 0 0 - oaHXSenEffCf2 6 81 0 0 1 2 0 0 0 0 - oaHXLatEffCDs 6 82 0 0 1 2 0 0 0 0 - oaHXLatEffCf2 6 83 0 0 1 2 0 0 0 0 - oaHXBypass 6 84 0 0 1 16 nz 0 0 0 - oaHXAuxPwr 6 85 0 0 1763 2 0 0 0 0 - oaHXAuxMtr 6 86 0 0 1 8192 meter 0 0 0 0 - endDOAS 13 0 0 0 0 0 0 0 0 0 - - -dhwdayuse Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wduMult 6 2 0 0 1 2 0 1 0 0 - dhwuse 5 0 0 0 0 0 DHWUse 0 0 c 0 - endDHWDAYUSE 13 0 0 0 0 0 0 0 0 0 - - -dhwuse Parent: dhwdayuse - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wuDHWDAYUSE 6 1 5 0 0 8192 DHWDayUse 0 0 0 0 - wuHWEndUse 6 2 0 0 1 16 0 0 0 0 - wuStart 6 4 8 0 739 2 0 0 0 0 - wuFlow 6 6 0 0 739 2 0 0 0 0 - wuDuration 6 5 0 0 739 2 0 1 0 0 - wuTemp 6 8 0 0 739 2 0 0 0 0 - wuHotF 6 7 0 0 739 2 0 1 0 0 - wuHeatRecEF 6 9 0 0 739 2 0 0 0 0 - wuEventID 6 3 0 0 1 1 0 0 0 0 - endDHWUSE 13 0 0 0 0 0 0 0 0 0 - - -dhwmeter Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - endDHWMETER 13 0 0 0 0 0 0 0 0 0 - - -dhwsys Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wsCentralDHWSYS 6 3 0 0 1 8192 DHWSYS 0 0 0 0 - wsLoadShareDHWSYS 6 166 0 0 1 8192 DHWSYS 0 0 0 0 - wsCalcMode 6 2 0 0 1 16 nz 0 0 0 - wsMult 6 4 0 0 1 2 0 1 0 0 - wsTInlet 6 14 0 0 739 2 0 0 0 0 - wsTInletTest 6 15 0 0 1763 2 0 0 0 0 - wsTInletDes 6 70 0 0 1 2 0 0 0 0 - wsUse 6 17 0 0 739 2 0 0 0 0 - wsUseTest 6 18 0 0 1763 2 0 0 0 0 - wsTUse 6 85 0 0 1 2 0 120 0 0 - wsTUseTest 6 86 0 0 1763 2 0 0 0 0 - wsTRLTest 6 19 0 0 1763 2 0 0 0 0 - wsVolRLTest 6 20 0 0 1763 2 0 0 0 0 - wsTSetpoint 6 87 0 0 739 2 0 120 0 0 - wsTSetpointLH 6 88 0 0 739 2 0 120 0 0 - wsTSetpointDes 6 69 0 0 1 2 0 120 0 0 - wsVolRunningDes 6 83 0 0 1 2 0 0 0 0 - wsASHPTSrcDes 6 71 0 0 1 2 0 0 0 0 - wsFxDes 6 84 0 0 1 2 0 1 0 0 - wsDRMethod 6 89 0 0 1 16 nz 0 0 0 - wsDRSignal 6 90 0 0 739 16 nz 0 0 0 - wsTargetSOC 6 92 0 0 739 2 0 0.9 0 0 - wsDayUse 6 95 0 0 227 4 0 0 0 0 - wsWHhwMtr 6 25 0 0 1 8192 DHWMETER 0 0 0 0 - wsFXhwMtr 6 26 0 0 1 8192 DHWMETER 0 0 0 0 - wsParElec 6 97 0 0 739 2 0 0 0 0 - wsSolarSys 6 9 0 0 1 8192 DHWSolarSys 0 0 0 0 - wsSDLM 6 98 0 0 1 2 0 1 0 0 - wsDSM 6 99 0 0 1 2 0 1 0 0 - wsSSF 6 100 0 0 739 2 0 0 0 0 - wsWF 6 101 0 0 739 2 0 1 0 0 - wsFaucetCount 6 161 0 0 1 1 nz 0 0 0 - wsShowerCount 6 162 0 0 1 1 nz 0 0 0 - wsBathCount 6 163 0 0 1 1 nz 0 0 0 - wsCWashrCount 6 164 0 0 1 1 nz 0 0 0 - wsDWashrCount 6 165 0 0 1 1 nz 0 0 0 - wsBranchModel 6 120 0 0 1 16 nz 0 0 0 - wsUnkDrawDurF 6 114 0 0 739 2 0 0 0 0 - wsFaucetDrawDurF 6 115 0 0 739 2 0 0 0 0 - wsShowerDrawDurF 6 116 0 0 739 2 0 0 0 0 - wsBathDrawDurF 6 117 0 0 739 2 0 0 0 0 - wsCWashrDrawDurF 6 118 0 0 739 2 0 1 0 0 - wsDWashrDurF 6 119 0 0 739 2 0 1 0 0 - wsUnkDrawWaste 6 121 0 0 739 2 0 0 0 0 - wsFaucetDrawWaste 6 122 0 0 739 2 0 0 0 0 - wsShowerDrawWaste 6 123 0 0 739 2 0 0 0 0 - wsBathDrawWaste 6 124 0 0 739 2 0 0 0 0 - wsCWashrDrawWaste 6 125 0 0 739 2 0 0 0 0 - wsDWashrDrawWaste 6 126 0 0 739 2 0 0 0 0 - wsUnkDayWasteF 6 127 0 0 1 2 0 0 0 0 - wsFaucetDayWasteF 6 128 0 0 1 2 0 0 0 0 - wsShowerDayWasteF 6 129 0 0 1 2 0 0 0 0 - wsBathDayWasteF 6 130 0 0 1 2 0 0 0 0 - wsCWashrDayWasteF 6 131 0 0 1 2 0 0 0 0 - wsDWashrDayWasteF 6 132 0 0 1 2 0 0 0 0 - wsDayWasteVol 6 133 0 0 1 2 0 0 0 0 - wsDayWasteBranchVolF 6 134 0 0 1 2 0 0 0 0 - wsDrawMaxDur 6 65 0 0 1 1 nz 0 0 0 - wsLoadMaxDur 6 67 0 0 1 1 nz 0 0 0 - wsElecMtr 6 5 0 0 1 8192 meter 0 0 0 0 - wsFuelMtr 6 6 0 0 1 8192 meter 0 0 0 0 - wsWriteDrawCSV 6 179 0 0 1 16 nz 0 0 0 - dhwheater 5 0 0 0 0 0 DHWHeater 0 0 7e 0 - dhwloopheater 5 0 0 0 0 0 DHWLoopHeater 0 0 7e 0 - dhwtank 5 0 0 0 0 0 DHWTank 0 0 47 0 - dhwpump 5 0 0 0 0 0 DHWPump 0 0 3b 0 - dhwloop 5 0 0 0 0 0 DHWLoop 0 0 e 0 - dhwheatrec 5 0 0 0 0 0 DHWHeatRec 0 0 54 0 - endDHWSYS 13 0 0 0 0 0 0 0 0 0 - - -dhwheater Parent: dhwsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - whDHWSYS 6 1 5 0 0 8192 DHWSYS 0 0 0 0 - whMult 6 2 0 0 1 2 0 1 0 0 - whType 6 4 0 0 1 16 nz 0 0 0 - whHeatSrc 6 3 0 0 1 16 nz 0 0 0 - whZone 6 9 0 0 1 8192 zone 0 0 0 0 - whTEx 6 10 0 0 1763 2 0 70 0 0 - whResType 6 8 0 0 1 16 nz 0 0 0 - whASHPType 6 7 0 0 1 16 nz 0 0 0 - whASHPSrcZn 6 11 0 0 1 8192 zone 0 0 0 0 - whASHPSrcT 6 12 0 0 1763 2 0 70 0 0 - whASHPResUse 6 13 0 0 1 2 0 7.22 0 0 - whTankTInit 6 14 128 0 1 2 0 0 nz 0 - whTankCount 6 27 0 0 1 2 0 1 0 0 - whHeatingCap 6 28 0 0 1 2 0 0 0 0 - whVol 6 29 0 0 1 2 0 0 0 0 - whVolRunning 6 30 0 0 1 2 0 0 0 0 - whUA 6 31 0 0 1 2 0 -1 0 0 - whInsulR 6 32 0 0 1 2 0 -1 0 0 - whInHtSupply 6 33 0 0 1 2 0 0 0 0 - whInHtLoopRet 6 34 0 0 1 2 0 0 0 0 - whEF 6 35 0 0 1 2 0 0.82 0 0 - whUEF 6 37 0 0 1 2 0 0 0 0 - whStbyElec 6 59 0 0 1 2 0 4 0 0 - whRatedFlow 6 38 0 0 1 2 0 0 0 0 - whLoadCFwdF 6 52 0 0 1 2 0 1 0 0 - whAnnualFuel 6 39 0 0 1 2 0 0 0 0 - whAnnualElec 6 40 0 0 1 2 0 0 0 0 - whResHtPwr 6 60 0 0 1 2 0 4500 0 0 - whResHtPwr2 6 61 0 0 1 2 0 0 0 0 - whLDEF 6 36 0 0 1 2 0 1 0 0 - whEff 6 45 0 0 1 2 0 1 0 0 - whSBL 6 46 0 0 1 2 0 0 0 0 - whFAdjElec 6 97 0 0 1763 2 0 1 0 0 - whFAdjFuel 6 98 0 0 1763 2 0 1 0 0 - whPilotPwr 6 47 0 0 739 2 0 0 0 0 - whParElec 6 48 0 0 739 2 0 0 0 0 - whElecMtr 6 109 0 0 1 8192 meter 0 0 0 0 - whFuelMtr 6 110 0 0 1 8192 meter 0 0 0 0 - whxBUEndUse 6 111 0 0 1 16 nz 0 0 0 - endDHWHEATER 13 0 0 0 0 0 0 0 0 0 - - -dhwloopheater Parent: dhwsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - whDHWSYS 6 1 5 0 0 8192 DHWSYS 0 0 0 0 - whMult 6 2 0 0 1 2 0 1 0 0 - whType 6 4 0 0 1 16 nz 0 0 0 - whHeatSrc 6 3 0 0 1 16 nz 0 0 0 - whZone 6 9 0 0 1 8192 zone 0 0 0 0 - whTEx 6 10 0 0 1763 2 0 70 0 0 - whResType 6 8 0 0 1 16 nz 0 0 0 - whASHPType 6 7 0 0 1 16 nz 0 0 0 - whASHPSrcZn 6 11 0 0 1 8192 zone 0 0 0 0 - whASHPSrcT 6 12 0 0 1763 2 0 70 0 0 - whASHPResUse 6 13 0 0 1 2 0 7.22 0 0 - whTankTInit 6 14 128 0 1 2 0 0 nz 0 - whTankCount 6 27 0 0 1 2 0 1 0 0 - whHeatingCap 6 28 0 0 1 2 0 0 0 0 - whVol 6 29 0 0 1 2 0 0 0 0 - whVolRunning 6 30 0 0 1 2 0 0 0 0 - whUA 6 31 0 0 1 2 0 -1 0 0 - whInsulR 6 32 0 0 1 2 0 -1 0 0 - whInHtSupply 6 33 0 0 1 2 0 0 0 0 - whInHtLoopRet 6 34 0 0 1 2 0 0 0 0 - whEF 6 35 0 0 1 2 0 0.82 0 0 - whUEF 6 37 0 0 1 2 0 0 0 0 - whStbyElec 6 59 0 0 1 2 0 4 0 0 - whRatedFlow 6 38 0 0 1 2 0 0 0 0 - whLoadCFwdF 6 52 0 0 1 2 0 1 0 0 - whAnnualFuel 6 39 0 0 1 2 0 0 0 0 - whAnnualElec 6 40 0 0 1 2 0 0 0 0 - whResHtPwr 6 60 0 0 1 2 0 4500 0 0 - whResHtPwr2 6 61 0 0 1 2 0 0 0 0 - whLDEF 6 36 0 0 1 2 0 1 0 0 - whEff 6 45 0 0 1 2 0 1 0 0 - whSBL 6 46 0 0 1 2 0 0 0 0 - whFAdjElec 6 97 0 0 1763 2 0 1 0 0 - whFAdjFuel 6 98 0 0 1763 2 0 1 0 0 - whPilotPwr 6 47 0 0 739 2 0 0 0 0 - whParElec 6 48 0 0 739 2 0 0 0 0 - whElecMtr 6 109 0 0 1 8192 meter 0 0 0 0 - whFuelMtr 6 110 0 0 1 8192 meter 0 0 0 0 - whxBUEndUse 6 111 0 0 1 16 nz 0 0 0 - endDHWHEATER 13 0 0 0 0 0 0 0 0 0 - - -dhwtank Parent: dhwsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wtDHWSYS 6 1 5 0 0 8192 DHWSYS 0 0 0 0 - wtMult 6 2 0 0 1 1 nz 0 0 0 - wtVol 6 4 0 0 1 2 0 0 0 0 - wtUA 6 3 0 0 1 2 0 -1 0 0 - wtInsulR 6 5 0 0 1 2 0 12 0 0 - wtZone 6 7 0 0 1 8192 zone 0 0 0 0 - wtTEx 6 8 0 0 739 2 0 0 0 0 - wtTTank 6 6 0 0 739 2 0 0 0 0 - wtXLoss 6 9 0 0 739 2 0 0 0 0 - endDHWTANK 13 0 0 0 0 0 0 0 0 0 - - -dhwpump Parent: dhwsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wpDHWSYS 6 1 5 0 0 8192 DHWSYS 0 0 0 0 - wpMult 6 2 0 0 1 1 nz 0 0 0 - wpElecMtr 6 3 0 0 1 8192 meter 0 0 0 0 - wpPwr 6 4 0 0 739 2 0 0 0 0 - endDHWPUMP 13 0 0 0 0 0 0 0 0 0 - - -dhwloop Parent: dhwsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wlDHWSYS 6 1 5 0 0 8192 DHWSYS 0 0 0 0 - wlMult 6 2 0 0 1 1 nz 0 0 0 - wlFlow 6 4 0 0 739 2 0 6 0 0 - wlTIn1 6 6 0 0 739 2 0 130 0 0 - wlRunF 6 5 0 0 739 2 0 1 0 0 - wlFUA 6 7 0 0 1 2 0 1 0 0 - wlLossMakeupPwr 6 8 0 0 739 2 0 0 0 0 - wlLossMakeupEff 6 9 0 0 739 2 0 1 0 0 - wlElecMtr 6 10 0 0 1 8192 meter 0 0 0 0 - dhwloopSeg 5 0 0 0 0 0 DHWLoopSeg 0 0 15 0 - dhwloopPump 5 0 0 0 0 0 DHWLoopPump 0 0 8 0 - endDHWLOOP 13 0 0 0 0 0 0 0 0 0 - - -dhwloopSeg Parent: dhwloop - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wgDHWLOOP 6 1 5 0 0 8192 DHWLoop 0 0 0 0 - wgTy 6 52 8 0 1 16 nz 0 0 0 - wgLength 6 2 0 0 1 2 0 0 0 0 - wgSize 6 3 8 0 1 2 0 0 0 0 - wgInsulK 6 4 0 0 1 2 0 0.02167 0 0 - wgInsulThk 6 5 0 0 1 2 0 1 0 0 - wgExH 6 6 0 0 739 2 0 1.5 0 0 - wgExT 6 39 0 0 739 2 0 70 0 0 - wgFNoDraw 6 54 0 0 739 2 0 1 0 0 - dhwloopBranch 5 0 0 0 0 0 DHWLoopBranch 0 0 11 0 - endDHWLOOPSEG 13 0 0 0 0 0 0 0 0 0 - - -dhwloopBranch Parent: dhwloopSeg - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wbDHWLOOPSEG 6 1 5 0 0 8192 DHWLoopSeg 0 0 0 0 - wbMult 6 52 0 0 1 2 0 1 0 0 - wbLength 6 2 0 0 1 2 0 0 0 0 - wbSize 6 3 0 0 1 2 0 0 0 0 - wbInsulK 6 4 0 0 1 2 0 0.02167 0 0 - wbInsulThk 6 5 0 0 1 2 0 1 0 0 - wbFUA 6 53 0 0 1 2 0 1 0 0 - wbExH 6 6 0 0 739 2 0 1.5 0 0 - wbExCnd 6 38 0 0 1 16 nz 0 0 0 - wbAdjZn 6 10 0 0 1 8192 zone 0 0 0 0 - wbExTX 6 32 0 0 1763 2 0 70 0 0 - wbExT 6 39 0 0 739 2 0 70 0 0 - wbFlow 6 55 0 0 739 2 0 2 0 0 - wbFWaste 6 54 0 0 739 2 0 0 0 0 - endDHWLOOPBRANCH 13 0 0 0 0 0 0 0 0 0 - - -dhwloopPump Parent: dhwloop - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wlpDHWLOOP 6 1 5 0 0 8192 DHWLoop 0 0 0 0 - wlpMult 6 2 0 0 1 1 nz 0 0 0 - wlpElecMtr 6 3 0 0 1 8192 meter 0 0 0 0 - wlpPwr 6 4 0 0 739 2 0 0 0 0 - wlpLiqHeatF 6 5 0 0 739 2 0 1 0 0 - endDHWLOOPPUMP 13 0 0 0 0 0 0 0 0 0 - - -dhwheatrec Parent: dhwsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - wrDHWSYS 6 1 5 0 0 8192 DHWSYS 0 0 0 0 - wrMult 6 2 0 0 1 1 nz 0 0 0 - wrType 6 4 0 0 1 16 nz 0 0 0 - wrCSARatedEF 6 8 8 0 739 2 0 0.5 0 0 - wrCountFXDrain 6 5 0 0 1 1 nz 0 0 0 - wrCountFXCold 6 6 0 0 1 1 0 0 0 0 - wrFeedsWH 6 7 0 0 1 16 nz 0 0 0 - wrTDInDiff 6 9 0 0 739 2 0 4.6 0 0 - wrTDInWarmup 6 10 0 0 739 2 0 65 0 0 - wrHWEndUse 6 3 0 0 1 16 nz 0 0 0 - endDHWHEATREC 13 0 0 0 0 0 0 0 0 0 - - -dhwsolarsys Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - swElecMtr 6 2 0 0 1 8192 meter 0 0 0 0 - swEndUse 6 3 0 0 1 16 nz 0 0 0 - swParElec 6 4 0 0 739 2 0 0 0 0 - swSCFluidSpHt 6 55 0 0 1 2 0 0.9 0 0 - swSCFluidDens 6 56 0 0 1 2 0 64 0 0 - swTankHXEff 6 42 0 0 1 2 0 0.7 0 0 - swTankTHxLimit 6 43 0 0 1 2 0 180 0 0 - swTankVol 6 35 0 0 1 2 0 0 0 0 - swTankUA 6 36 0 0 1 2 0 -1 0 0 - swTankInsulR 6 37 0 0 1 2 0 12 0 0 - swTankZone 6 38 0 0 1 8192 zone 0 0 0 0 - swTankTEx 6 39 0 0 739 2 0 0 0 0 - dhwsolarcollector 5 0 0 0 0 0 DHWSolarCollector 0 0 16 0 - endDHWSOLARSYS 13 0 0 0 0 0 0 0 0 0 - - -dhwsolarcollector Parent: dhwsolarsys - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - scDHWSOLARSYS 6 1 5 0 0 8192 DHWSolarSys 0 0 0 0 - scArea 6 4 8 0 1 2 0 0 0 0 - scMult 6 2 0 0 1 2 0 1 0 0 - scTilt 6 5 8 0 1 2 0 0 0 0 - scAzm 6 6 8 0 1 2 0 0 0 0 - scFRUL 6 7 0 0 1 2 0 -0.727 0 0 - scFRTA 6 8 0 0 1 2 0 0.758 0 0 - scTestMassFlow 6 9 0 0 1 2 0 14.79 0 0 - scKta60 6 11 0 0 1 2 0 0.72 0 0 - scOprMassFlow 6 10 0 0 1 2 0 0 0 0 - scPipingLength 6 12 0 0 1 2 0 0 0 0 - scPipingInsulK 6 14 0 0 1 2 0 0.02167 0 0 - scPipingInsulThk 6 15 0 0 1 2 0 1 0 0 - scPipingExH 6 16 0 0 1 2 0 1.5 0 0 - scPipingExT 6 23 0 0 739 2 0 70 0 0 - scPumpPwr 6 40 0 0 1 2 0 0 0 0 - scPumpLiqHeatF 6 42 0 0 1 2 0 1 0 0 - scPumpOnDeltaT 6 44 0 0 1 2 0 5 0 0 - scPumpOffDeltaT 6 45 0 0 1 2 0 1 0 0 - endDHWSOLARCOLLECTOR 13 0 0 0 0 0 0 0 0 0 - - -pvarray Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - pvElecMtr 6 44 0 0 1 8192 meter 0 0 0 0 - pvEndUse 6 45 0 0 1 16 nz 0 0 0 - pvDCSysSize 6 46 8 0 1 2 0 0 0 0 - pvModuleType 6 47 0 0 1 16 nz 0 0 0 - pvCoverRefrInd 6 49 0 0 1 2 0 1.3 0 0 - pvTempCoeff 6 48 0 0 1 2 0 -0.00206 0 0 - pvArrayType 6 50 0 0 1 16 nz 0 0 0 - pvTilt 6 51 0 0 739 2 0 0 0 0 - pvAzm 6 52 0 0 739 2 0 0 0 0 - pvGrndRefl 6 53 0 0 739 2 0 0.2 0 0 - pvGCR 6 54 0 0 1 2 0 0.4 0 0 - pvDCtoACRatio 6 55 0 0 1 2 0 1.2 0 0 - pvInverterEff 6 57 0 0 1 2 0 0.96 0 0 - pvSIF 6 56 0 0 1 2 0 1.2 0 0 - pvSysLosses 6 58 0 0 739 2 0 0.14 0 0 - pvMounting 6 2 0 0 1 16 nz 0 0 0 - pvVertices 6 7 128 0 1 2 0 0 nz 0 - endPVARRAY 13 0 0 0 0 0 0 0 0 0 - - -battery Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - btMeter 6 2 0 0 1 8192 meter 0 0 0 0 - btEndUse 6 3 0 0 1 16 nz 0 0 0 - btChgEff 6 9 0 0 739 2 0 0.975 0 0 - btDschgEff 6 10 0 0 739 2 0 0.975 0 0 - btMaxCap 6 6 0 0 1 2 0 6 0 0 - btInitSOE 6 7 0 0 1 2 0 1 0 0 - btInitCycles 6 8 0 0 1 2 0 0 0 0 - btMaxChgPwr 6 11 0 0 739 2 0 4 0 0 - btMaxDschgPwr 6 12 0 0 739 2 0 4 0 0 - btChgReq 6 13 0 0 743 2 0 0 0 0 - btUseUsrChg 6 4 0 0 1 16 nz 0 0 0 - btControlAlg 6 5 0 0 739 16 nz 0 0 0 - endBATTERY 13 0 0 0 0 0 0 0 0 0 - - -shadex Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - sxMounting 6 2 0 0 1 16 nz 0 0 0 - sxVertices 6 7 128 0 1 2 0 0 nz 0 - endSHADEX 13 0 0 0 0 0 0 0 0 0 - - -airHandler Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 0 - ahSched 6 164 0 0 739 16 nz 0 0 0 - ahFxVfFan 6 6 0 0 3 2 0 1.1 0 0 - sfanType 6 165 0 0 3 16 nz 0 0 0 - sfanVfDs 6 166 1032 0 3 2 0 0 0 0 - sfanVfMxF 6 169 0 0 3 2 0 1.3 0 0 - sfanPress 6 170 0 0 3 2 0 3 0 0 - sfanEff 6 171 0 0 3 2 0 0.65 0 0 - sfanShaftBhp 6 172 0 0 3 2 0 0 0 0 - sfanElecPwr 6 173 0 0 1 2 0 0 0 0 - sfanMotEff 6 175 0 0 3 2 0 0.9 0 0 - sfanMotPos 6 176 0 0 3 16 nz 0 0 0 - sfanCurvePy 6 177 128 0 3 2 0 0 nz 0 - sfanMtr 6 183 0 0 1 8192 meter 0 0 0 0 - rfanType 6 196 0 0 3 16 nz 0 0 0 - rfanVfDs 6 197 1024 0 3 2 0 0 0 0 - rfanVfMxF 6 200 0 0 3 2 0 1.3 0 0 - rfanPress 6 201 0 0 3 2 0 0.75 0 0 - rfanEff 6 202 0 0 3 2 0 0.65 0 0 - rfanShaftBhp 6 203 0 0 3 2 0 0 0 0 - rfanElecPwr 6 204 0 0 1 2 0 0 0 0 - rfanMotEff 6 206 0 0 3 2 0 0.9 0 0 - rfanMotPos 6 207 0 0 3 16 nz 0 0 0 - rfanCurvePy 6 208 128 0 3 2 0 0 nz 0 - rfanMtr 6 214 0 0 1 8192 meter 0 0 0 0 - cchCM 6 227 0 0 3 16 nz 0 0 0 - cchPMx 6 228 0 0 3 2 0 0.4 0 0 - cchPMn 6 229 0 0 3 2 0 0.04 0 0 - cchTMx 6 230 0 0 3 2 0 0 0 0 - cchTMn 6 231 0 0 3 2 0 150 0 0 - cchDT 6 232 0 0 3 2 0 20 0 0 - cchTOn 6 233 0 0 3 2 0 72 0 0 - cchTOff 6 234 0 0 3 2 0 72 0 0 - cchMtr 6 235 0 0 1 8192 meter 0 0 0 0 - ahhcType 6 242 0 0 3 16 nz 0 0 0 - ahhcSched 6 243 0 0 739 16 nz 0 0 0 - ahhcCaptRat 6 244 1024 0 739 2 0 0 0 0 - ahhcFxCap 6 4 0 0 3 2 0 1.1 0 0 - ahhcHeatplant 6 268 0 0 1 8192 heatPlant 0 0 0 0 - ahhcEffR 6 261 0 0 3 2 0 1 0 0 - ahhcEirR 6 248 0 0 739 2 0 1 0 0 - ahhcPyEi 6 262 128 0 3 2 0 0 nz 0 - ahhcStackEffect 6 267 0 0 739 2 0 0 0 0 - ahhcMtr 6 249 0 0 1 8192 meter 0 0 0 0 - ahhcAux 6 250 0 0 739 2 0 0 0 0 - ahhcAuxMtr 6 251 0 0 1 8192 meter 0 0 0 0 - ahpCap17 6 273 0 0 3 2 0 0 0 0 - ahpCapRat1747 6 274 0 0 3 2 0 0.6184 0 0 - ahpCapRat9547 6 275 0 0 1 2 0 0 0 0 - ahpCap35 6 276 0 0 3 2 0 0 0 0 - ahpFd35Df 6 277 0 0 3 2 0 0.85 0 0 - ahpCapIa 6 278 0 0 3 2 0 0.004 0 0 - ahpCapSupH 6 279 0 0 3 2 0 0 0 0 - ahpEffSupH 6 280 0 0 739 2 0 1 0 0 - ahpSupHMtr 6 281 0 0 1 8192 meter 0 0 0 0 - ahpTFrMn 6 282 0 0 3 2 0 17 0 0 - ahpTFrMx 6 283 0 0 3 2 0 47 0 0 - ahpTFrPk 6 284 0 0 3 2 0 42 0 0 - ahpDfrFMn 6 285 0 0 3 2 0 0.0222 0 0 - ahpDfrFMx 6 286 0 0 3 2 0 0.0889 0 0 - ahpDfrCap 6 287 0 0 3 2 0 0 0 0 - ahpTOff 6 288 0 0 3 2 0 5 0 0 - ahpTOn 6 289 0 0 3 2 0 12 0 0 - ahpCOP17 6 290 0 0 3 2 0 0 0 0 - ahpCOP47 6 291 0 0 3 2 0 0 0 0 - ahpInIa 6 292 0 0 3 2 0 0.004 0 0 - ahpCd 6 293 0 0 3 2 0 0.25 0 0 - ahccType 6 311 0 0 3 16 nz 0 0 0 - ahccSched 6 312 0 0 739 16 nz 0 0 0 - ahccCaptRat 6 313 1024 0 3 2 0 0 0 0 - ahccCapsRat 6 330 0 0 3 2 0 0 0 0 - ahccSHRRat 6 333 0 0 3 2 0 0.77 0 0 - ahccFxCap 6 5 0 0 3 2 0 1.1 0 0 - ahccK1 6 335 0 0 3 2 0 -0.4 0 0 - ahccMinTEvap 6 334 0 0 3 2 0 35 0 0 - ahccDsTDbCnd 6 336 0 0 3 2 0 95 0 0 - ahccDsTDbEn 6 337 0 0 3 2 0 80 0 0 - ahccDsTWbEn 6 338 0 0 3 2 0 67 0 0 - ahccVfR 6 339 0 0 3 2 0 0 0 0 - ahccVfRperTon 6 340 0 0 3 2 0 400 0 0 - ahccEirR 6 317 0 0 739 2 0 1 0 0 - ahccMinUnldPlr 6 341 0 0 3 2 0 1 nz 0 - ahccMinFsldPlr 6 342 0 0 3 2 0 1 nz 0 - pydxCaptT 6 343 128 0 3 2 0 0 nz 0 - pydxCaptF 6 350 128 0 3 2 0 0 nz 0 - pydxCaptFLim 6 355 0 0 3 2 0 1.05 0 0 - pydxEirT 6 356 128 0 3 2 0 0 nz 0 - pydxEirUl 6 363 128 0 3 2 0 0 nz 0 - ahccCoolplant 6 368 0 0 1 8192 coolPlant 0 0 0 0 - ahccGpmDs 6 369 0 0 3 2 0 0 0 0 - ahccNtuoDs 6 370 0 0 3 2 0 2 0 0 - ahccNtuiDs 6 371 0 0 3 2 0 2 0 0 - ahccBypass 6 310 0 0 739 2 0 0 0 0 - ahFanCycles 6 78 0 0 739 16 nz 0 0 0 - ahccMtr 6 318 0 0 1 8192 meter 0 0 0 0 - ahccAux 6 319 0 0 739 2 0 0 0 0 - ahccAuxMtr 6 320 0 0 1 8192 meter 0 0 0 0 - ahTsSp 6 77 0 0 739 18 0 0 0 0 - ahTsMn 6 79 0 0 739 2 0 40 0 0 - ahTsMx 6 80 0 0 739 2 0 250 0 0 - ahTsRaMn 6 81 0 0 739 2 0 0 0 0 - ahTsRaMx 6 82 0 0 739 2 0 0 0 0 - ahTsDsH 6 2 0 0 739 2 0 0 0 0 - ahTsDsC 6 3 0 0 739 2 0 0 0 0 - ahCtu 6 83 0 0 1 8192 terminal 0 0 0 0 - ahWzCzns 6 84 640 0 1 8192 zone nz 0 nz 0 - ahCzCzns 6 100 640 0 1 8192 zone nz 0 nz 0 - oaMnCtrl 6 116 0 0 3 16 nz 0 0 0 - oaMnFrac 6 117 0 0 739 2 0 1 0 0 - oaVfDsMn 6 118 0 0 3 2 0 0 0 0 - oaEcoType 6 119 0 0 3 16 nz 0 0 0 - oaLimT 6 120 0 0 739 18 nz 0 0 0 - oaLimE 6 121 0 0 739 18 0 999 0 0 - oaHXVfDs 6 125 0 0 1 2 0 0 0 0 - oaHXf2 6 126 0 0 1 2 0 0.75 0 0 - oaHXSenEffHDs 6 127 0 0 1 2 0 0 0 0 - oaHXSenEffHf2 6 128 0 0 1 2 0 0 0 0 - oaHXLatEffHDs 6 129 0 0 1 2 0 0 0 0 - oaHXLatEffHf2 6 130 0 0 1 2 0 0 0 0 - oaHXSenEffCDs 6 131 0 0 1 2 0 0 0 0 - oaHXSenEffCf2 6 132 0 0 1 2 0 0 0 0 - oaHXLatEffCDs 6 133 0 0 1 2 0 0 0 0 - oaHXLatEffCf2 6 134 0 0 1 2 0 0 0 0 - oaHXBypass 6 135 0 0 1 16 nz 0 0 0 - oaHXAuxPwr 6 136 0 0 1763 2 0 0 0 0 - oaHXAuxMtr 6 137 0 0 1 8192 meter 0 0 0 0 - oaOaLeak 6 122 0 0 3 2 0 0.05 0 0 - oaRaLeak 6 123 0 0 3 2 0 0.05 0 0 - oaZoneLeak 6 124 0 0 739 2 0 0 0 0 - ahSOLeak 6 160 0 0 3 2 0 0.01 0 0 - ahROLeak 6 161 0 0 3 2 0 0.01 0 0 - ahSOLoss 6 162 0 0 3 2 0 0.02 0 0 - ahROLoss 6 163 0 0 3 2 0 0.02 0 0 - endAirhandler 13 0 0 0 0 0 0 0 0 0 - - -meter Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - mtrRate 6 2 0 0 739 2 0 0 0 0 - mtrDemandRate 6 3 0 0 739 2 0 0 0 0 - mtrSubMeters 6 4 128 0 1 8192 meter 0 0 nz 0 - mtrSubMeterMults 6 55 128 0 739 2 0 1 nz 0 - endMeter 13 0 0 0 0 0 0 0 0 0 - - -reportCol Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 0 - colReport 6 1 1 0 1 8192 report 0 0 0 0 - colHead 6 2 16384 0 1 4 0 0 0 0 - colGap 6 3 0 0 1 1 nz 0 0 0 - colWid 6 4 16384 0 1 1 0 0 0 0 - colDec 6 5 16384 0 1 1 nz 0 0 0 - colJust 6 6 0 0 1 16 0 0 0 0 - colVal 6 7 16392 0 1771 6 0 0 0 0 - endReportcol 13 0 0 0 0 0 0 0 0 0 - - -exportCol Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 0 - colExport 6 1 1 0 1 8192 export 0 0 0 0 - colHead 6 2 0 0 1 4 0 0 0 0 - colWid 6 4 0 0 1 1 0 0 0 0 - colDec 6 5 0 0 1 1 nz 0 0 0 - colJust 6 6 0 0 1 16 0 0 0 0 - colVal 6 7 8 0 1771 6 0 0 0 0 - endExportcol 13 0 0 0 0 0 0 0 0 0 - - -report Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - rpReportfile 6 1 2 0 1 12288 reportFile 0 0 0 0 - rpZone 6 2 768 0 1 8192 zone 0 0 0 0 - rpMeter 6 3 768 0 1 8192 meter 0 0 0 0 - rpAh 6 4 768 0 1 8192 airHandler 0 0 0 0 - rpDHWMeter 6 6 512 0 1 8192 DHWMETER 0 0 0 0 - rpAFMeter 6 7 768 0 1 8192 AFMETER 0 0 0 0 - rpTu 6 5 512 0 1 8192 terminal 0 0 0 0 - rpType 6 9 16392 0 0 16 0 0 0 0 - rpFreq 6 10 16384 0 0 16 0 0 0 0 - rpDayBeg 6 11 16384 0 1 28672 0 0 0 0 - rpDayEnd 6 12 16384 0 1 28672 0 0 0 0 - rpBtuSf 6 13 0 0 1 2 0 1e+06 0 0 - rpCond 6 14 0 0 1771 32 nz 0 0 0 - rpTitle 6 15 0 0 1 4 0 0 0 0 - rpCpl 6 16 16384 0 1 1 nz 0 0 0 - rpHeader 6 17 16384 0 1 16 nz 0 0 0 - rpFooter 6 18 0 0 1 16 nz 0 0 0 - reportCol 5 0 16384 0 0 0 reportCol 0 0 13 0 - isExport 6 8 4 0 0 1 0 0 0 0 - endReport 13 0 0 0 0 0 0 0 0 0 - - -export Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - exExportfile 6 1 2 0 1 12288 exportFile 0 0 0 0 - exZone 6 2 770 0 1 8192 zone 0 0 0 0 - exMeter 6 3 768 0 1 8192 meter 0 0 0 0 - exAh 6 4 768 0 1 8192 airHandler 0 0 0 0 - exDHWMeter 6 6 512 0 1 8192 DHWMETER 0 0 0 0 - exAFMeter 6 7 512 0 1 8192 AFMETER 0 0 0 0 - exTu 6 5 512 0 1 8192 terminal 0 0 0 0 - exType 6 9 8 0 0 16 0 0 0 0 - exFreq 6 10 0 0 0 16 0 0 0 0 - exDayBeg 6 11 0 0 1 28672 0 0 0 0 - exDayEnd 6 12 0 0 1 28672 0 0 0 0 - exBtuSf 6 13 0 0 1 2 0 1e+06 0 0 - exCond 6 14 0 0 1771 32 nz 0 0 0 - exTitle 6 15 0 0 1 4 0 0 0 0 - exHeader 6 17 0 0 1 16 nz 0 0 0 - exFooter 6 18 0 0 1 16 nz 0 0 0 - exportCol 5 0 0 0 0 0 exportCol 0 0 1f 0 - isExport 6 8 4 0 0 1 nz 0 0 0 - endExport 13 0 0 0 0 0 0 0 0 0 - - -reportfile Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - rfFileName 6 2 8 0 1 4 0 0 0 0 - rfFileStat 6 3 0 0 0 16 nz 0 0 0 - rfPageFmt 6 4 16384 0 1 16 nz 0 0 0 - endReportFile 13 0 0 0 0 0 0 0 0 0 - report 5 0 16384 0 0 0 report 0 0 2b 0 - - -exportfile Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - xfFileName 6 2 8 0 1 4 0 0 0 0 - xfFileStat 6 3 0 0 0 16 nz 0 0 0 - endExportFile 13 0 0 0 0 0 0 0 0 0 - export 5 0 0 0 0 0 export 0 0 1c 0 - - -importfile Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - imFileName 6 2 8 0 3 4 0 0 0 0 - imTitle 6 3 0 0 3 4 0 0 0 0 - imFreq 6 4 8 0 1 16 0 0 0 0 - imHeader 6 5 0 0 3 16 nz 0 0 0 - imBinary 6 6 0 0 1 16 nz 0 0 0 - endImportFile 13 0 0 0 0 0 0 0 0 0 - - -heatPlant Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - hpSched 6 2 8192 0 739 16 nz 0 0 0 - hpPipeLossF 6 3 0 0 3 2 0 0.01 0 0 - hpStage1 6 4 640 0 1 8192 boiler 0 0 nz 0 - hpStage2 6 12 640 0 1 8192 boiler 0 0 nz 0 - hpStage3 6 20 640 0 1 8192 boiler 0 0 nz 0 - hpStage4 6 28 640 0 1 8192 boiler 0 0 nz 0 - hpStage5 6 36 640 0 1 8192 boiler 0 0 nz 0 - hpStage6 6 44 640 0 1 8192 boiler 0 0 nz 0 - hpStage7 6 52 640 0 1 8192 boiler 0 0 nz 0 - boiler 5 0 16 0 0 0 boiler 0 0 16 0 - endHeatplant 13 0 0 0 0 0 0 0 0 0 - - -boiler Parent: heatPlant - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - blrHeatplant 6 1 8197 0 0 8192 heatPlant 0 0 0 0 - blrCap 6 2 8 0 3 2 0 0 0 0 - blrEffR 6 3 0 0 3 2 0 0.8 0 0 - blrEirR 6 4 0 0 3 2 0 0 0 0 - blrPyEi 6 5 128 0 3 2 0 0 nz 0 - blrMtr 6 10 0 0 1 8192 meter 0 0 0 0 - blrpGpm 6 11 0 0 3 2 0 0 0 0 - blrpHdLoss 6 12 0 0 3 2 0 114.45 0 0 - blrpMotEff 6 13 0 0 3 2 0 0.88 0 0 - blrpHydEff 6 14 0 0 3 2 0 0.7 0 0 - blrpOvrunF 6 15 4 0 0 2 0 1.3 0 0 - blrpMtr 6 16 0 0 1 8192 meter 0 0 0 0 - blrAuxOn 6 20 0 0 739 2 0 0 0 0 - blrAuxOnMtr 6 21 0 0 1 8192 meter 0 0 0 0 - blrAuxOff 6 22 0 0 739 2 0 0 0 0 - blrAuxOffMtr 6 23 0 0 1 8192 meter 0 0 0 0 - blrAuxOnAtall 6 24 0 0 739 2 0 0 0 0 - blrAuxOnAtallMtr 6 25 0 0 1 8192 meter 0 0 0 0 - blrAuxFullOff 6 26 0 0 739 2 0 0 0 0 - blrAuxFullOffMtr 6 27 0 0 1 8192 meter 0 0 0 0 - endBoiler 13 0 0 0 0 0 0 0 0 0 - - -coolPlant Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - cpSched 6 2 8192 0 739 16 nz 0 0 0 - cpTsSp 6 3 0 0 739 2 0 44 0 0 - cpPipeLossF 6 4 0 0 3 2 0 0.01 0 0 - cpTowerplant 6 5 8 0 1 8192 towerPlant 0 0 0 0 - cpStage1 6 6 640 0 1 8192 chiller 0 0 nz 0 - cpStage2 6 14 640 0 1 8192 chiller 0 0 nz 0 - cpStage3 6 22 640 0 1 8192 chiller 0 0 nz 0 - cpStage4 6 30 640 0 1 8192 chiller 0 0 nz 0 - cpStage5 6 38 640 0 1 8192 chiller 0 0 nz 0 - cpStage6 6 46 640 0 1 8192 chiller 0 0 nz 0 - cpStage7 6 54 640 0 1 8192 chiller 0 0 nz 0 - chiller 5 0 16 0 0 0 chiller 0 0 23 0 - endCoolplant 13 0 0 0 0 0 0 0 0 0 - - -chiller Parent: coolPlant - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - chCoolplant 6 1 8197 0 0 8192 coolPlant 0 0 0 0 - chCapDs 6 2 8 0 3 2 0 0 0 0 - chTsDs 6 3 0 0 3 2 0 44 0 0 - chTcndDs 6 4 0 0 3 2 0 85 0 0 - chPyCapT 6 5 128 0 3 2 0 0 nz 0 - chCop 6 12 0 0 3 2 0 4.2 0 0 - chEirDs 6 13 0 0 3 2 0 0 0 0 - chPyEirT 6 14 128 0 3 2 0 0 nz 0 - chPyEirUl 6 21 128 0 3 2 0 0 nz 0 - chMinUnldPlr 6 26 0 0 3 2 0 0.1 0 0 - chMinFsldPlr 6 27 0 0 3 2 0 0.1 0 0 - chMotEff 6 28 0 0 3 2 0 1 0 0 - chMtr 6 29 0 0 1 8192 meter 0 0 0 0 - chppGpm 6 30 0 0 3 2 0 0 0 0 - chppHdLoss 6 31 0 0 3 2 0 57.22 0 0 - chppMotEff 6 32 0 0 3 2 0 0.88 0 0 - chppHydEff 6 33 0 0 3 2 0 0.7 0 0 - chppOvrunF 6 34 0 0 3 2 0 1.3 0 0 - chppMtr 6 35 0 0 1 8192 meter 0 0 0 0 - chcpGpm 6 39 0 0 3 2 0 0 0 0 - chcpHdLoss 6 40 0 0 3 2 0 45.78 0 0 - chcpMotEff 6 41 0 0 3 2 0 0.88 0 0 - chcpHydEff 6 42 0 0 3 2 0 0.7 0 0 - chcpOvrunF 6 43 4 0 0 2 0 1.3 0 0 - chcpMtr 6 44 0 0 1 8192 meter 0 0 0 0 - chAuxOn 6 48 0 0 739 2 0 0 0 0 - chAuxOnMtr 6 49 0 0 1 8192 meter 0 0 0 0 - chAuxOff 6 50 0 0 739 2 0 0 0 0 - chAuxOffMtr 6 51 0 0 1 8192 meter 0 0 0 0 - chAuxOnAtall 6 52 0 0 739 2 0 0 0 0 - chAuxOnAtallMtr 6 53 0 0 1 8192 meter 0 0 0 0 - chAuxFullOff 6 54 0 0 739 2 0 0 0 0 - chAuxFullOffMtr 6 55 0 0 1 8192 meter 0 0 0 0 - endChiller 13 0 0 0 0 0 0 0 0 0 - - -towerPlant Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - ctN 6 2 8192 0 3 1 nz 0 0 0 - tpStg 6 3 0 0 3 16 nz 0 0 0 - tpTsSp 6 4 0 0 739 2 0 85 0 0 - tpMtr 6 5 0 0 1 8192 meter 0 0 0 0 - ctType 6 6 0 0 3 16 nz 0 0 0 - ctLoSpd 6 7 0 0 3 2 0 0.5 0 0 - ctShaftBhp 6 8 0 0 3 2 0 0 0 0 - ctMotEff 6 9 0 0 3 2 0 0.88 0 0 - ctFcOne 6 10 128 0 3 2 0 0 nz 0 - ctFcLo 6 13 128 0 3 2 0 0 nz 0 - ctFcHi 6 16 128 0 3 2 0 0 nz 0 - ctFcVar 6 19 128 0 3 2 0 0 nz 0 - ctCapDs 6 24 0 0 3 2 0 0 0 0 - ctVfDs 6 25 0 0 3 2 0 0 0 0 - ctGpmDs 6 26 0 0 3 2 0 0 0 0 - ctTDbODs 6 27 0 0 3 2 0 93.5 0 0 - ctTWbODs 6 28 0 0 3 2 0 78 0 0 - ctTwoDs 6 29 0 0 3 2 0 85 0 0 - ctCapOd 6 30 0 0 3 2 0 0 0 0 - ctVfOd 6 31 0 0 3 2 0 0 0 0 - ctGpmOd 6 32 0 0 3 2 0 0 0 0 - ctTDbOOd 6 33 0 0 3 2 0 93.5 0 0 - ctTWbOOd 6 34 0 0 3 2 0 78 0 0 - ctTwoOd 6 35 0 0 3 2 0 85 0 0 - ctK 6 36 0 0 3 2 0 0.4 0 0 - ctStkFlFr 6 37 0 0 3 2 0 0.18 0 0 - ctBldn 6 38 0 0 3 2 0 0.01 0 0 - ctDrft 6 39 0 0 3 2 0 0 0 0 - ctTWm 6 40 0 0 3 2 0 60 0 0 - endTowerplant 13 0 0 0 0 0 0 0 0 0 - - -holiday Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - hdDateTrue 6 2 8192 0 1 28672 0 0 0 0 - hdDateObs 6 3 0 0 1 28672 0 0 0 0 - hdOnMonday 6 4 0 0 1 16 0 0 0 0 - hdCase 6 5 0 0 1 16 0 0 0 0 - hdDow 6 6 0 0 1 16 0 0 0 0 - hdMon 6 7 0 0 1 16 0 0 0 0 - endHoliday 13 0 0 0 0 0 0 0 0 0 - - -descond Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - dcDay 6 2 8 0 1 28672 nz 0 0 0 - dcDB 6 3 8 0 1 2 0 0 0 0 - dcMCDBR 6 4 8 0 1 2 0 0 0 0 - dcMCWB 6 5 8 0 1 2 0 0 0 0 - dcMCWBR 6 6 8 0 1 2 0 0 0 0 - dcWindSpeed 6 7 8 0 1 2 0 0 0 0 - dcTauB 6 8 0 0 1 2 0 0 0 0 - dcTauD 6 9 0 0 1 2 0 0 0 0 - dcEbnSlrNoon 6 10 0 0 1 2 0 0 0 0 - dcEdhSlrNoon 6 11 0 0 1 2 0 0 0 0 - endDesCond 13 0 0 0 0 0 0 0 0 0 - - -inverse Parent: Top - id cs fn f uc evf ty b dfpi dff p2 ckf - -------------------- -- --- ----- -- ---- ----- --------------- -------- ---------- -------- -------- - * 3 0 8192 0 0 0 0 0 0 nz - ivFREQ 6 2 8 0 1 16 nz 0 0 0 - ivX0 6 3 0 0 1 2 0 0 0 0 - ivY0 6 4 0 0 1 2 0 0 0 0 - ivYTarg 6 5 8 0 1 2 0 0 0 0 - ivX 6 6 8 0 1771 2 0 0 0 0 - ivY 6 7 8 0 1771 2 0 0 0 0 - endInverse 13 0 0 0 0 0 0 0 0 0 -! CSE 0.921.0 for Win32 console +! CSE 0.921.0+battery-submeter.410d3b61.138 for Win32 console @@ -2030,7 +468,6 @@ Input for Run 001: dt = "YES" heatDsTDbO = 37 coolDsDay = DD1 - dbgPrintMaskC = 4 // dump CULT tables MATERIAL "mat-Gypsum Board" matDens = 40 @@ -3568,18 +2005,18 @@ Input for Run 001: -! CSE 0.921.0 for Win32 console run(s) done: Mon 29-Jan-24 2:11:40 pm +! CSE 0.921.0+battery-submeter.410d3b61.138 for Win32 console run(s) done: Wed 27-Mar-24 1:51:30 pm -! Executable: d:\cse\msvc\cse.exe -! 29-Jan-24 2:03 pm (VS 14.29 2885632 bytes) (HPWH 1.23.0) +! Executable: d:\cse\builds\cse.exe +! 27-Mar-24 1:50 pm (VS 14.29 2873344 bytes) (HPWH 1.23.0+HEAD.f90302f.61) ! Command line: -x! -t1 ashppkgroom ! Input file: D:\cse\test\ashppkgroom.cse ! Report file: D:\CSE\TEST\ASHPPKGROOM.REP ! Timing info -- -! Input: Time = 0.09 Calls = 2 T/C = 0.0470 -! AutoSizing: Time = 0.27 Calls = 1 T/C = 0.2740 -! Simulation: Time = 6.58 Calls = 1 T/C = 6.5770 +! Input: Time = 0.11 Calls = 2 T/C = 0.0545 +! AutoSizing: Time = 0.29 Calls = 1 T/C = 0.2880 +! Simulation: Time = 6.58 Calls = 1 T/C = 6.5760 ! Reports: Time = 0.00 Calls = 1 T/C = 0.0020 -! Total: Time = 6.95 Calls = 1 T/C = 6.9540 +! Total: Time = 6.98 Calls = 1 T/C = 6.9780 diff --git a/test/ref-win32-msvc/BT_TEST.REP b/test/ref-win32-msvc/BT_TEST.REP index 357133fef..e230bfc5d 100644 --- a/test/ref-win32-msvc/BT_TEST.REP +++ b/test/ref-win32-msvc/BT_TEST.REP @@ -1,39 +1,81 @@ +Monthly Energy Use, meter "ElecMtrInitNo" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Jan 0.0158 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 -.0096 0 +Feb 0.0229 0 0 0 0 0 0 0 0 0 0 0 0 0.0229 0 0 0 0 0 0 0 0 0 0 0 +Mar 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Apr 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +May 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Jun 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +Jul 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Aug 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Sep 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +Oct 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Nov 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +Dec 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 + +Yr 0.289 0 0 0 0 0 0 0 0 0 0 0 0 0.299 0 0 0 0 0 0 0 0 0 -.0096 0 + + + +Monthly Energy Use, meter "ElecMtrInitYes" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Jan 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 -.0254 0 +Feb 0.0210 0 0 0 0 0 0 0 0 0 0 0 0 0.0229 0 0 0 0 0 0 0 0 0 -.0019 0 +Mar 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Apr 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +May 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Jun 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +Jul 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Aug 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Sep 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +Oct 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 +Nov 0.0246 0 0 0 0 0 0 0 0 0 0 0 0 0.0246 0 0 0 0 0 0 0 0 0 0 0 +Dec 0.0254 0 0 0 0 0 0 0 0 0 0 0 0 0.0254 0 0 0 0 0 0 0 0 0 0 0 + +Yr 0.272 0 0 0 0 0 0 0 0 0 0 0 0 0.299 0 0 0 0 0 0 0 0 0 -.0273 0 + + + Battery and warmup with (Yes) & without (No) btInitSOE for Thu 01-Jan - Day Hour YesSOE YesEgy[kWh] YesBT[kW] NoSOE NoEgy[kWh] NoBT[kW] - ---------- ---------- ------ ----------- --------- ------ ---------- -------- - Thu 01-Jan 0 0.799 7.99 -0.01 0.279 2.79 -0.01 - Thu 01-Jan 1 0.798 7.98 -0.01 0.278 2.78 -0.01 - Thu 01-Jan 2 0.797 7.97 -0.01 0.277 2.77 -0.01 - Thu 01-Jan 3 0.796 7.96 -0.01 0.276 2.76 -0.01 - Thu 01-Jan 4 0.795 7.95 -0.01 0.275 2.75 -0.01 - Thu 01-Jan 5 0.794 7.94 -0.01 0.274 2.74 -0.01 - Thu 01-Jan 6 0.793 7.93 -0.01 0.273 2.73 -0.01 - Thu 01-Jan 7 0.792 7.92 -0.01 0.272 2.72 -0.01 - Thu 01-Jan 8 0.791 7.91 -0.01 0.271 2.71 -0.01 - Thu 01-Jan 9 0.79 7.9 -0.01 0.27 2.7 -0.01 - Thu 01-Jan 10 0.789 7.89 -0.01 0.269 2.69 -0.01 - Thu 01-Jan 11 0.788 7.88 -0.01 0.268 2.68 -0.01 - Thu 01-Jan 12 0.787 7.87 -0.01 0.267 2.67 -0.01 - Thu 01-Jan 13 0.786 7.86 -0.01 0.266 2.66 -0.01 - Thu 01-Jan 14 0.785 7.85 -0.01 0.265 2.65 -0.01 - Thu 01-Jan 15 0.784 7.84 -0.01 0.264 2.64 -0.01 - Thu 01-Jan 16 0.783 7.83 -0.01 0.263 2.63 -0.01 - Thu 01-Jan 17 0.782 7.82 -0.01 0.262 2.62 -0.01 - Thu 01-Jan 18 0.781 7.81 -0.01 0.261 2.61 -0.01 - Thu 01-Jan 19 0.78 7.8 -0.01 0.26 2.6 -0.01 - Thu 01-Jan 20 0.779 7.79 -0.01 0.259 2.59 -0.01 - Thu 01-Jan 21 0.778 7.78 -0.01 0.258 2.58 -0.01 - Thu 01-Jan 22 0.777 7.77 -0.01 0.257 2.57 -0.01 - Thu 01-Jan 23 0.776 7.76 -0.01 0.256 2.56 -0.01 + Day Hour NoSOE NoEgy[kWh] NoBT[kW] YesSOE YesEgy[kWh] YesBT[kW] + ---------- ---------- ------ ---------- -------- ------ ----------- --------- + Thu 01-Jan 0 0.279 2.79 -0.01 0.799 7.99 -0.01 + Thu 01-Jan 1 0.278 2.78 -0.01 0.798 7.98 -0.01 + Thu 01-Jan 2 0.277 2.77 -0.01 0.797 7.97 -0.01 + Thu 01-Jan 3 0.276 2.76 -0.01 0.796 7.96 -0.01 + Thu 01-Jan 4 0.275 2.75 -0.01 0.795 7.95 -0.01 + Thu 01-Jan 5 0.274 2.74 -0.01 0.794 7.94 -0.01 + Thu 01-Jan 6 0.273 2.73 -0.01 0.793 7.93 -0.01 + Thu 01-Jan 7 0.272 2.72 -0.01 0.792 7.92 -0.01 + Thu 01-Jan 8 0.271 2.71 -0.01 0.791 7.91 -0.01 + Thu 01-Jan 9 0.27 2.7 -0.01 0.79 7.9 -0.01 + Thu 01-Jan 10 0.269 2.69 -0.01 0.789 7.89 -0.01 + Thu 01-Jan 11 0.268 2.68 -0.01 0.788 7.88 -0.01 + Thu 01-Jan 12 0.267 2.67 -0.01 0.787 7.87 -0.01 + Thu 01-Jan 13 0.266 2.66 -0.01 0.786 7.86 -0.01 + Thu 01-Jan 14 0.265 2.65 -0.01 0.785 7.85 -0.01 + Thu 01-Jan 15 0.264 2.64 -0.01 0.784 7.84 -0.01 + Thu 01-Jan 16 0.263 2.63 -0.01 0.783 7.83 -0.01 + Thu 01-Jan 17 0.262 2.62 -0.01 0.782 7.82 -0.01 + Thu 01-Jan 18 0.261 2.61 -0.01 0.781 7.81 -0.01 + Thu 01-Jan 19 0.26 2.6 -0.01 0.78 7.8 -0.01 + Thu 01-Jan 20 0.259 2.59 -0.01 0.779 7.79 -0.01 + Thu 01-Jan 21 0.258 2.58 -0.01 0.778 7.78 -0.01 + Thu 01-Jan 22 0.257 2.57 -0.01 0.777 7.77 -0.01 + Thu 01-Jan 23 0.256 2.56 -0.01 0.776 7.76 -0.01 ! Log for Run 001: -! CSE 0.920.0+main.99c64c5b.17 for Win32 console +! CSE 0.921.0+battery-submeter.5c17c88a.109.dirty for Win32 console @@ -61,7 +103,6 @@ Input for Run 001: gnPower = 0.01 * kw_to_btuh BATTERY "BatteryInitNo" btMeter = ElecMtrInitNo - btEndUse = BT btMaxCap = 10.0 // kWh btMaxChgPwr = 5.0 // kW btMaxDschgPwr = 5.0 // kW @@ -72,7 +113,7 @@ Input for Run 001: // This battery should be initialized to the initSOE value at the beginning of // the simulation. Since the spreadsheet shows the SOE values at the END of // each timestep, we should see the first SOE at 0.799 (0.8 - 0.01 kWh / 10kWh) = - // 0.799), then dropping 0.001 each additional hour. + // 0.799), then dropping 0.01 each additional hour. METER "ElecMtrInitYes" GAIN "BuildingLoadInitYes" LIKE "BuildingLoadInitNo" gnMeter = ElecMtrInitYes @@ -80,6 +121,9 @@ Input for Run 001: btMeter = ElecMtrInitYes btInitSOE = 0.8 // 80% state of energy + REPORT rpType=MTR rpMeter = "ElecMtrInitNo" rpFreq=MONTH + REPORT rpType=MTR rpMeter = "ElecMtrInitYes" rpFreq=MONTH + REPORT rpType = UDT rpFreq = HOUR @@ -90,12 +134,12 @@ Input for Run 001: rpFooter = "No" ReportCol colhead="Day" colVal=@Top.dateStr ReportCol colhead="Hour" colVal=@Top.iHr - ReportCol colhead="YesSOE" colWid=6 colVal=@BATTERY["BatteryInitYes"].soe - ReportCol colhead="YesEgy[kWh]" colWid=11 colVal=@BATTERY["BatteryInitYes"].energy - ReportCol colhead="YesBT[kW]" colWid=9 colVal=@METER["ElecMtrInitYes"].H.BT / kw_to_btuh ReportCol colhead="NoSOE" colWid=6 colVal=@BATTERY["BatteryInitNo"].soe ReportCol colhead="NoEgy[kWh]" colWid=10 colVal=@BATTERY["BatteryInitNo"].energy ReportCol colhead="NoBT[kW]" colWid=8 colVal=@METER["ElecMtrInitNo"].H.BT / kw_to_btuh + ReportCol colhead="YesSOE" colWid=6 colVal=@BATTERY["BatteryInitYes"].soe + ReportCol colhead="YesEgy[kWh]" colWid=11 colVal=@BATTERY["BatteryInitYes"].energy + ReportCol colhead="YesBT[kW]" colWid=9 colVal=@METER["ElecMtrInitYes"].H.BT / kw_to_btuh DELETE REPORT "EB" @@ -103,18 +147,18 @@ Input for Run 001: -! CSE 0.920.0+main.99c64c5b.17 for Win32 console run(s) done: Mon 18-Dec-23 4:17:55 pm +! CSE 0.921.0+battery-submeter.5c17c88a.109.dirty for Win32 console run(s) done: Tue 26-Mar-24 4:05:55 pm -! Executable: d:\cse\msvc\cse.exe -! 18-Dec-23 4:07 pm (VS 14.29 2796544 bytes) (HPWH 1.22.0+HEAD.f9b8f77.122) -! Command line: -x! -b -t1 bt_test +! Executable: d:\cse\builds\cse.exe +! 26-Mar-24 3:52 pm (VS 14.29 2876928 bytes) (HPWH 1.23.0+HEAD.f90302f.61) +! Command line: -x! -t1 bt_test ! Input file: D:\cse\test\bt_test.cse ! Report file: D:\CSE\TEST\BT_TEST.REP ! Timing info -- -! Input: Time = 0.08 Calls = 1 T/C = 0.0800 +! Input: Time = 0.05 Calls = 1 T/C = 0.0480 ! AutoSizing: Time = 0.00 Calls = 0 T/C = 0.0000 -! Simulation: Time = 0.07 Calls = 1 T/C = 0.0730 +! Simulation: Time = 0.05 Calls = 1 T/C = 0.0490 ! Reports: Time = 0.00 Calls = 1 T/C = 0.0010 -! Total: Time = 0.15 Calls = 1 T/C = 0.1540 +! Total: Time = 0.10 Calls = 1 T/C = 0.1000 diff --git a/test/ref-win32-msvc/PV_BT_TEST.REP b/test/ref-win32-msvc/PV_BT_TEST.REP index ccc871c95..a52a4c045 100644 --- a/test/ref-win32-msvc/PV_BT_TEST.REP +++ b/test/ref-win32-msvc/PV_BT_TEST.REP @@ -21,7 +21,7 @@ GridLoads by Battery Control (kWh) ! Log for Run 001: -! CSE 0.920.0+main.99c64c5b.17 for Win32 console +! CSE 0.921.0+battery-submeter.28488c7d.108.dirty for Win32 console @@ -89,7 +89,6 @@ Input for Run 001: gnPower = import(Data,"HouseLoad_kW") * kw_to_btuh BATTERY "BatteryDefault" btMeter = ElecMtrDefault - btEndUse = BT btMaxCap = 16.320 // kWh btMaxChgPwr = max_bt_pwr // kW btMaxDschgPwr = max_bt_pwr // kW @@ -306,18 +305,18 @@ Input for Run 001: -! CSE 0.920.0+main.99c64c5b.17 for Win32 console run(s) done: Mon 18-Dec-23 4:17:53 pm +! CSE 0.921.0+battery-submeter.28488c7d.108.dirty for Win32 console run(s) done: Tue 26-Mar-24 2:41:45 pm -! Executable: d:\cse\msvc\cse.exe -! 18-Dec-23 4:07 pm (VS 14.29 2796544 bytes) (HPWH 1.22.0+HEAD.f9b8f77.122) -! Command line: -x! -b -t1 pv_bt_test +! Executable: d:\cse\builds\cse.exe +! 26-Mar-24 11:34 am (VS 14.29 2876928 bytes) (HPWH 1.23.0+HEAD.f90302f.61) +! Command line: -x! -t1 pv_bt_test ! Input file: D:\cse\test\pv_bt_test.cse ! Report file: D:\CSE\TEST\PV_BT_TEST.REP ! Timing info -- -! Input: Time = 0.08 Calls = 1 T/C = 0.0820 +! Input: Time = 0.05 Calls = 1 T/C = 0.0500 ! AutoSizing: Time = 0.00 Calls = 0 T/C = 0.0000 -! Simulation: Time = 1.10 Calls = 1 T/C = 1.1050 -! Reports: Time = 0.04 Calls = 1 T/C = 0.0350 -! Total: Time = 1.22 Calls = 1 T/C = 1.2220 +! Simulation: Time = 0.77 Calls = 1 T/C = 0.7740 +! Reports: Time = 0.02 Calls = 1 T/C = 0.0220 +! Total: Time = 0.85 Calls = 1 T/C = 0.8490 diff --git a/test/ref-win32-msvc/submeter.rep b/test/ref-win32-msvc/submeter.rep index 01b5808af..5fc20171b 100644 --- a/test/ref-win32-msvc/submeter.rep +++ b/test/ref-win32-msvc/submeter.rep @@ -3,16 +3,19 @@ Error Messages for Run 001: --------------- -SUBMETER.CSE(7119): Warning: - LOADMETER 'LMHtg': Duplicate reference from LOADMETER 'LMCancel' +SUBMETER.CSE(5609): Info: + meter 'MtrElec': Duplicate reference from meter 'MtrElecRecomb' --------------- -SUBMETER.CSE(7120): Warning: - LOADMETER 'LMClg': Duplicate reference from LOADMETER 'LMCancel' +SUBMETER.CSE(5610): Info: + meter 'MtrElec2': Duplicate reference from meter 'MtrElecRecomb' --------------- -SUBMETER.CSE(7119): Warning: +SUBMETER.CSE(5611): Info: + meter 'MtrElecPV': Duplicate reference from meter 'MtrElecRecomb' +--------------- +SUBMETER.CSE(7121): Info: LOADMETER 'LMHtg': Duplicate reference from LOADMETER 'LMCancel' --------------- -SUBMETER.CSE(7120): Warning: +SUBMETER.CSE(7122): Info: LOADMETER 'LMClg': Duplicate reference from LOADMETER 'LMCancel' --------------- Info: Zone 'Conditioned-zn': Temp control outcomes @@ -45,24 +48,45 @@ HVAC Heating Info +Monthly Energy Use, meter "MtrNatGas" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Jan 352.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223.36 0 129.15 0 0 0 0 +Feb 352.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 238.75 0 113.56 0 0 0 0 +Mar 404.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277.28 0 126.78 0 0 0 0 +Apr 317.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 215.67 0 101.57 0 0 0 0 +May 290.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 184.84 0 105.19 0 0 0 0 +Jun 384.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277.29 0 106.82 0 0 0 0 +Jul 340.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223.34 0 117.23 0 0 0 0 +Aug 324.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 215.64 0 108.61 0 0 0 0 +Sep 321.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 215.66 0 105.45 0 0 0 0 +Oct 432.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 323.46 0 108.61 0 0 0 0 +Nov 352.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223.34 0 128.88 0 0 0 0 +Dec 438.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300.40 0 137.89 0 0 0 0 + +Yr 4308.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2919.0 0 1389.7 0 0 0 0 + + + Monthly Energy Use, meter "MtrElec" Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ -Jan 3.001 0 1.169 0.191 0.227 0.304 0 0 0.258 0.0574 0 0.0760 0 0.174 0.655 0.0413 0.174 0.0248 0.0108 0.0256 .00688 0 .00444 .00980 -0.407 -Feb 2.191 0 0.858 0.213 0.251 0.282 0 0 0.190 0.0518 0 0.0498 0 0.147 0.544 0.0348 0.158 0.0223 0.0115 0.0273 .00605 0 .00432 0.0210 -0.683 -Mar 0.898 0 0.140 .00625 0.297 0.172 0 0 0.0308 0.0573 0 .00887 0 0.149 0.578 0.0353 0.185 0.0346 0.0134 0.0318 .00675 0 .00187 0.0298 -0.881 -Apr 0.775 0 0.234 0.0353 0.245 0.193 0 0 0.0511 0.0555 0 0.0180 0 0.132 0.551 0.0312 0.181 0.0346 0.0104 0.0247 .00541 0 .00663 0.0423 -1.075 -May 0.181 0 0 0 0.239 0.0985 0 0.0564 0 0.0574 0 .00450 0 0.123 0.533 0.0291 0.202 0.0247 .00894 0.0212 .00560 0 .00136 0.0453 -1.270 -Jun 0.300 0.0457 0 0 0.183 0.127 0 0.111 0 0.0555 0 0 0 0.114 0.495 0.0269 0.208 0.0272 0.0134 0.0318 .00569 0 .00279 0.0399 -1.187 -Jul 0.261 0.149 0 0 0.159 0.0477 0 0.120 0 0.0574 0 0 0 0.120 0.534 0.0284 0.227 0.0247 0.0108 0.0256 .00624 0 .00036 0.0466 -1.295 -Aug 0.315 0.108 0 0 0.135 0.0860 0 0.123 0 0.0574 0 0 0 0.129 0.553 0.0305 0.227 0.0173 0.0104 0.0247 .00579 0 .00072 0.0456 -1.239 -Sep 0.406 .00017 0 0 0.194 0.0919 0 0.102 0 0.0555 0 .00109 0 0.139 0.564 0.0329 0.206 0.0322 0.0104 0.0247 .00562 0 .00099 0.0423 -1.097 -Oct 0.739 0 .00383 0 0.228 0.148 0 0.0419 .00082 0.0574 0 .00150 0 0.157 0.620 0.0371 0.199 0.0322 0.0156 0.0370 .00579 0 .00779 0.0351 -0.888 -Nov 1.463 0 0.302 0.0703 0.258 0.219 0 0 0.0661 0.0556 0 0.0359 0 0.165 0.625 0.0390 0.177 0.0322 0.0108 0.0256 .00687 0 .00323 0.0216 -0.649 -Dec 2.906 0 1.074 0.257 0.209 0.312 0 0 0.237 0.0574 0 0.0605 0 0.176 0.662 0.0416 0.173 0.0247 0.0145 0.0344 .00734 0 .00227 0.0108 -0.450 +Jan 3001.0 0 1169.0 190.50 227.41 303.68 0 0 257.63 57.368 0 76.022 0 174.48 654.88 41.285 173.70 24.751 10.805 25.581 6.879 0 4.441 9.800 -407.3 +Feb 2190.9 0 858.40 212.99 251.16 282.12 0 0 190.24 51.816 0 49.817 0 147.00 544.17 34.783 158.45 22.275 11.549 27.344 6.049 0 4.317 20.950 -682.5 +Mar 897.62 0 140.03 6.245 296.55 172.39 0 0 30.761 57.291 0 8.872 0 149.49 578.24 35.336 185.49 34.647 13.413 31.756 6.753 0 1.865 29.827 -881.3 +Apr 775.28 0 233.64 35.302 244.68 193.20 0 0 51.068 55.517 0 18.016 0 131.96 550.53 31.224 181.08 34.649 10.433 24.701 5.410 0 6.627 42.330 -1075 +May 181.28 0 0 0 238.97 98.534 0 56.371 0 57.368 0 4.504 0 123.17 533.45 29.142 202.29 24.749 8.941 21.169 5.603 0 1.357 45.334 -1270 +Jun 299.63 45.687 0 0 182.90 127.29 0 111.28 0 55.517 0 0 0 113.52 494.97 26.859 208.23 27.225 13.414 31.758 5.690 0 2.790 39.949 -1187 +Jul 261.34 148.86 0 0 158.69 47.654 0 120.13 0 57.368 0 0 0 120.23 533.84 28.448 226.68 24.748 10.804 25.579 6.244 0 0.360 46.561 -1295 +Aug 314.93 108.12 0 0 135.39 85.951 0 122.93 0 57.368 0 0 0 129.03 553.17 30.530 227.35 17.323 10.432 24.698 5.785 0 0.717 45.631 -1239 +Sep 405.55 0.172 0 0 193.72 91.887 0 101.56 0 55.517 0 1.092 0 139.06 564.10 32.903 206.32 32.174 10.433 24.700 5.617 0 0.991 42.265 -1097 +Oct 739.49 0 3.826 0 227.67 147.53 0 41.865 0.822 57.368 0 1.501 0 156.89 619.94 37.122 199.46 32.177 15.647 37.045 5.785 0 7.792 35.050 -888.0 +Nov 1462.9 0 301.74 70.349 258.06 218.56 0 0 66.052 55.595 0 35.896 0 164.68 624.81 39.004 177.10 32.176 10.804 25.580 6.865 0 3.235 21.614 -649.2 +Dec 2906.1 0 1074.4 257.09 209.50 312.45 0 0 237.43 57.368 0 60.463 0 175.95 662.23 41.632 173.44 24.748 14.531 34.404 7.345 0 2.271 10.767 -449.9 -Yr 13.436 0.303 3.781 0.772 2.625 2.081 0 0.554 0.834 0.675 0 0.256 0 1.725 6.914 0.408 2.320 0.332 0.141 0.334 0.0740 0 0.0368 0.390 -11.12 +Yr 13436 302.84 3781.0 772.48 2624.7 2081.3 0 554.14 834.00 675.46 0 256.18 0 1725.5 6914.3 408.27 2319.6 331.64 141.21 334.32 74.026 0 36.763 390.08 -11122 @@ -70,20 +94,20 @@ Monthly Energy Use, meter "MtrElecPV" Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ -Jan -0.407 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.407 -Feb -0.683 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.683 -Mar -0.881 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.881 -Apr -1.075 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.075 -May -1.270 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.270 -Jun -1.187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.187 -Jul -1.295 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.295 -Aug -1.239 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.239 -Sep -1.097 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.097 -Oct -0.888 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.888 -Nov -0.649 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.649 -Dec -0.450 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.450 +Jan -407.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -407.3 +Feb -682.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -682.5 +Mar -881.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -881.3 +Apr -1075 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1075 +May -1270 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1270 +Jun -1187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1187 +Jul -1295 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1295 +Aug -1239 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1239 +Sep -1097 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1097 +Oct -888.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -888.0 +Nov -649.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -649.2 +Dec -449.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -449.9 -Yr -11.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -11.12 +Yr -11122 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -11122 @@ -91,62 +115,264 @@ Monthly Energy Use, meter "MtrElec2" Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ -Jan -0.224 0 0 0 0 0 0 0 0 0 0 0 0 0 0.183 0 0 0 0 0 0 0 0 0 -0.407 -Feb -0.533 0 0 0 0 0 0 0 0 0 0 0 0 0 0.149 0 0 0 0 0 0 0 0 0 -0.683 -Mar -0.711 0 0 0 0 0 0 0 0 0 0 0 0 0 0.171 0 0 0 0 0 0 0 0 0 -0.881 -Apr -0.905 0 0 0 0 0 0 0 0 0 0 0 0 0 0.170 0 0 0 0 0 0 0 0 0 -1.075 -May -1.101 0 0 0 0 0 0 0 0 0 0 0 0 0 0.168 0 0 0 0 0 0 0 0 0 -1.270 -Jun -1.022 0 0 0 0 0 0 0 0 0 0 0 0 0 0.165 0 0 0 0 0 0 0 0 0 -1.187 -Jul -1.113 0 0 0 0 0 0 0 0 0 0 0 0 0 0.182 0 0 0 0 0 0 0 0 0 -1.295 -Aug -1.056 0 0 0 0 0 0 0 0 0 0 0 0 0 0.184 0 0 0 0 0 0 0 0 0 -1.239 -Sep -0.920 0 0 0 0 0 0 0 0 0 0 0 0 0 0.177 0 0 0 0 0 0 0 0 0 -1.097 -Oct -0.699 0 0 0 0 0 0 0 0 0 0 0 0 0 0.189 0 0 0 0 0 0 0 0 0 -0.888 -Nov -0.472 0 0 0 0 0 0 0 0 0 0 0 0 0 0.177 0 0 0 0 0 0 0 0 0 -0.649 -Dec -0.267 0 0 0 0 0 0 0 0 0 0 0 0 0 0.183 0 0 0 0 0 0 0 0 0 -0.450 +Jan -224.4 0 0 0 0 0 0 0 0 0 0 0 0 0 182.92 0 0 0 0 0 0 0 0 0 -407.3 +Feb -533.1 0 0 0 0 0 0 0 0 0 0 0 0 0 149.37 0 0 0 0 0 0 0 0 0 -682.5 +Mar -710.8 0 0 0 0 0 0 0 0 0 0 0 0 0 170.59 0 0 0 0 0 0 0 0 0 -881.3 +Apr -905.2 0 0 0 0 0 0 0 0 0 0 0 0 0 169.92 0 0 0 0 0 0 0 0 0 -1075 +May -1101 0 0 0 0 0 0 0 0 0 0 0 0 0 168.44 0 0 0 0 0 0 0 0 0 -1270 +Jun -1022 0 0 0 0 0 0 0 0 0 0 0 0 0 165.15 0 0 0 0 0 0 0 0 0 -1187 +Jul -1113 0 0 0 0 0 0 0 0 0 0 0 0 0 181.99 0 0 0 0 0 0 0 0 0 -1295 +Aug -1056 0 0 0 0 0 0 0 0 0 0 0 0 0 183.88 0 0 0 0 0 0 0 0 0 -1239 +Sep -919.5 0 0 0 0 0 0 0 0 0 0 0 0 0 177.44 0 0 0 0 0 0 0 0 0 -1097 +Oct -698.7 0 0 0 0 0 0 0 0 0 0 0 0 0 189.25 0 0 0 0 0 0 0 0 0 -888.0 +Nov -472.5 0 0 0 0 0 0 0 0 0 0 0 0 0 176.69 0 0 0 0 0 0 0 0 0 -649.2 +Dec -267.2 0 0 0 0 0 0 0 0 0 0 0 0 0 182.62 0 0 0 0 0 0 0 0 0 -449.9 -Yr -9.023 0 0 0 0 0 0 0 0 0 0 0 0 0 2.098 0 0 0 0 0 0 0 0 0 -11.12 +Yr -9023 0 0 0 0 0 0 0 0 0 0 0 0 0 2098.3 0 0 0 0 0 0 0 0 0 -11122 -Monthly Energy Use, meter "MtrNatGas" +Monthly Energy Use, meter "MtrElecPeak" Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ -Jan 0.353 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.223 0 0.129 0 0 0 0 -Feb 0.352 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.239 0 0.114 0 0 0 0 -Mar 0.404 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.277 0 0.127 0 0 0 0 -Apr 0.317 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.216 0 0.102 0 0 0 0 -May 0.290 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.185 0 0.105 0 0 0 0 -Jun 0.384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.277 0 0.107 0 0 0 0 -Jul 0.341 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.223 0 0.117 0 0 0 0 -Aug 0.324 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.216 0 0.109 0 0 0 0 -Sep 0.321 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.216 0 0.105 0 0 0 0 -Oct 0.432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.323 0 0.109 0 0 0 0 -Nov 0.352 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.223 0 0.129 0 0 0 0 -Dec 0.438 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.300 0 0.138 0 0 0 0 +Jan 489.16 0 147.72 6.539 51.721 72.411 0 0 32.075 11.952 0 8.462 0 52.694 162.31 7.441 41.534 4.949 2.438 7.438 4.050 0 0.579 -79.77 -45.37 +Feb 196.86 0 67.339 0.607 49.590 20.471 0 0 14.625 10.795 0 3.003 0 44.395 135.11 6.275 38.318 2.474 2.608 6.241 3.589 0 0.238 -134.6 -74.20 +Mar 90.435 0 12.188 0 61.729 39.137 0 0 2.641 11.952 0 0.682 0 45.167 143.40 6.383 44.877 6.950 4.587 10.220 4.006 0 0.671 -119.0 -185.2 +Apr -28.53 0 0.897 0 45.924 36.190 0 0 0.191 11.566 0 0.136 0 39.853 135.96 5.641 43.695 6.023 1.118 6.056 3.251 0 0.752 -119.5 -246.3 +May -92.72 0 0 0 41.424 12.007 0 13.212 0 11.952 0 0 0 37.196 131.84 5.252 48.537 0 1.909 5.533 3.298 0 0.0155 -122.9 -282.0 +Jun -66.82 31.835 0 0 31.044 0 0 16.166 0 11.566 0 0 0 34.282 122.14 4.853 49.559 6.023 4.296 12.229 3.419 0 0.0236 -117.6 -276.6 +Jul -73.94 105.86 0 0 35.936 11.222 0 27.367 0 11.952 0 0 0 36.310 131.55 5.136 53.494 3.402 0.846 3.334 3.732 0 0.104 -194.5 -309.7 +Aug -57.09 81.049 0 0 22.882 24.885 0 20.484 0 11.952 0 0 0 38.967 136.48 5.507 53.774 4.948 2.710 6.208 3.432 0 0.375 -187.4 -283.4 +Sep -43.18 0.0217 0 0 37.724 33.765 0 7.197 0 11.566 0 0 0 41.996 139.33 5.939 49.239 8.498 1.972 6.595 3.349 0 0.323 -169.9 -220.8 +Oct 68.144 0 0 0 39.609 35.733 0 8.111 0 11.952 0 0 0 47.381 153.07 6.702 47.810 9.899 3.629 9.918 3.458 0 4.859 -157.8 -156.2 +Nov 206.06 0 18.471 0.0403 55.176 41.326 0 0 3.995 11.566 0 1.774 0 49.709 154.67 7.010 42.634 9.229 2.481 5.293 3.998 0 0.508 -162.9 -38.90 +Dec 495.49 0 121.19 22.680 65.352 72.908 0 0 26.493 11.952 0 7.234 0 53.137 163.92 7.517 41.429 6.023 4.304 10.575 4.390 0 1.261 -91.74 -33.14 -Yr 4.309 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.919 0 1.390 0 0 0 0 +Yr 1183.9 218.76 367.81 29.867 538.11 400.05 0 92.536 80.020 140.72 0 21.292 0 521.09 1709.8 73.656 554.90 68.418 32.898 89.642 43.971 0 9.709 -1658 -2152 -Monthly Energy Use, meter "MtrElecPeak" +Monthly Energy Use, meter "MtrElecOffPeak" Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ -Jan 568.93 0 147.72 6.539 51.721 72.411 0 0 32.075 11.952 0 8.462 0 52.694 162.31 7.441 41.534 4.949 2.438 7.438 4.050 0 0.579 0 -45.37 -Feb 331.48 0 67.339 0.607 49.590 20.471 0 0 14.625 10.795 0 3.003 0 44.395 135.11 6.275 38.318 2.474 2.608 6.241 3.589 0 0.238 0 -74.20 -Mar 209.41 0 12.188 0 61.729 39.137 0 0 2.641 11.952 0 0.682 0 45.167 143.40 6.383 44.877 6.950 4.587 10.220 4.006 0 0.671 0 -185.2 -Apr 90.991 0 0.897 0 45.924 36.190 0 0 0.191 11.566 0 0.136 0 39.853 135.96 5.641 43.695 6.023 1.118 6.056 3.251 0 0.752 0 -246.3 -May 30.189 0 0 0 41.424 12.007 0 13.212 0 11.952 0 0 0 37.196 131.84 5.252 48.537 0 1.909 5.533 3.298 0 0.0155 0 -282.0 -Jun 50.808 31.835 0 0 31.044 0 0 16.166 0 11.566 0 0 0 34.282 122.14 4.853 49.559 6.023 4.296 12.229 3.419 0 0.0236 0 -276.6 -Jul 120.56 105.86 0 0 35.936 11.222 0 27.367 0 11.952 0 0 0 36.310 131.55 5.136 53.494 3.402 0.846 3.334 3.732 0 0.104 0 -309.7 -Aug 130.27 81.049 0 0 22.882 24.885 0 20.484 0 11.952 0 0 0 38.967 136.48 5.507 53.774 4.948 2.710 6.208 3.432 0 0.375 0 -283.4 -Sep 126.71 0.0217 0 0 37.724 33.765 0 7.197 0 11.566 0 0 0 41.996 139.33 5.939 49.239 8.498 1.972 6.595 3.349 0 0.323 0 -220.8 -Oct 225.97 0 0 0 39.609 35.733 0 8.111 0 11.952 0 0 0 47.381 153.07 6.702 47.810 9.899 3.629 9.918 3.458 0 4.859 0 -156.2 -Nov 368.98 0 18.471 0.0403 55.176 41.326 0 0 3.995 11.566 0 1.774 0 49.709 154.67 7.010 42.634 9.229 2.481 5.293 3.998 0 0.508 0 -38.90 -Dec 587.23 0 121.19 22.680 65.352 72.908 0 0 26.493 11.952 0 7.234 0 53.137 163.92 7.517 41.429 6.023 4.304 10.575 4.390 0 1.261 0 -33.14 +Jan 2511.8 0 1021.3 183.97 175.69 231.27 0 0 225.56 45.416 0 67.560 0 121.79 492.58 33.844 132.17 19.802 8.366 18.143 2.830 0 3.862 89.573 -361.9 +Feb 1994.0 0 791.06 212.38 201.57 261.65 0 0 175.61 41.021 0 46.815 0 102.61 409.06 28.508 120.13 19.801 8.942 21.103 2.460 0 4.079 155.57 -608.3 +Mar 807.18 0 127.84 6.245 234.83 133.25 0 0 28.120 45.339 0 8.189 0 104.32 434.84 28.952 140.61 27.697 8.826 21.536 2.747 0 1.194 148.80 -696.2 +Apr 803.80 0 232.74 35.302 198.76 157.01 0 0 50.876 43.951 0 17.880 0 92.110 414.57 25.583 137.38 28.626 9.315 18.646 2.159 0 5.875 161.85 -828.8 +May 273.99 0 0 0 197.55 86.527 0 43.160 0 45.416 0 4.504 0 85.970 401.60 23.890 153.75 24.749 7.032 15.636 2.305 0 1.341 168.24 -987.7 +Jun 366.45 13.852 0 0 151.85 127.29 0 95.116 0 43.951 0 0 0 79.235 372.84 22.007 158.67 21.202 9.118 19.529 2.271 0 2.767 157.58 -910.8 +Jul 335.28 43.004 0 0 122.76 36.432 0 92.763 0 45.416 0 0 0 83.923 402.29 23.312 173.19 21.347 9.958 22.245 2.512 0 0.256 241.06 -985.2 +Aug 372.02 27.073 0 0 112.50 61.066 0 102.45 0 45.416 0 0 0 90.064 416.69 25.023 173.58 12.375 7.722 18.489 2.354 0 0.342 232.99 -956.1 +Sep 448.74 0.150 0 0 156.00 58.122 0 94.361 0 43.951 0 1.092 0 97.063 424.77 26.964 157.08 23.676 8.461 18.105 2.268 0 0.667 212.16 -876.2 +Oct 671.35 0 3.826 0 188.06 111.80 0 33.754 0.822 45.416 0 1.501 0 109.51 466.87 30.419 151.65 22.278 12.018 27.127 2.328 0 2.934 192.87 -731.8 +Nov 1256.9 0 283.27 70.309 202.89 177.24 0 0 62.057 44.028 0 34.121 0 114.97 470.14 31.994 134.47 22.947 8.323 20.287 2.867 0 2.727 184.53 -610.3 +Dec 2410.6 0 953.17 234.41 144.14 239.54 0 0 210.94 45.416 0 53.229 0 122.81 498.31 34.115 132.01 18.725 10.228 23.829 2.955 0 1.010 102.51 -416.7 + +Yr 12252 84.080 3413.2 742.61 2086.6 1681.2 0 461.60 753.98 534.74 0 234.89 0 1204.4 5204.6 334.61 1764.7 263.23 108.31 244.67 30.055 0 27.054 2047.7 -8970 + + + +Monthly Energy Use, meter "MtrElecRecomb" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Jan 3001.0 0 1169.0 190.50 227.41 303.68 0 0 257.63 57.368 0 76.022 0 174.48 654.88 41.285 173.70 24.751 10.805 25.581 6.879 0 4.441 9.800 -407.3 +Feb 2190.9 0 858.40 212.99 251.16 282.12 0 0 190.24 51.816 0 49.817 0 147.00 544.17 34.783 158.45 22.275 11.549 27.344 6.049 0 4.317 20.950 -682.5 +Mar 897.62 0 140.03 6.245 296.55 172.39 0 0 30.761 57.291 0 8.872 0 149.49 578.24 35.336 185.49 34.647 13.413 31.756 6.753 0 1.865 29.827 -881.3 +Apr 775.28 0 233.64 35.302 244.68 193.20 0 0 51.068 55.517 0 18.016 0 131.96 550.53 31.224 181.08 34.649 10.433 24.701 5.410 0 6.627 42.330 -1075 +May 181.28 0 0 0 238.97 98.534 0 56.371 0 57.368 0 4.504 0 123.17 533.45 29.142 202.29 24.749 8.941 21.169 5.603 0 1.357 45.334 -1270 +Jun 299.63 45.687 0 0 182.90 127.29 0 111.28 0 55.517 0 0 0 113.52 494.97 26.859 208.23 27.225 13.414 31.758 5.690 0 2.790 39.949 -1187 +Jul 261.34 148.86 0 0 158.69 47.654 0 120.13 0 57.368 0 0 0 120.23 533.84 28.448 226.68 24.748 10.804 25.579 6.244 0 0.360 46.561 -1295 +Aug 314.93 108.12 0 0 135.39 85.951 0 122.93 0 57.368 0 0 0 129.03 553.17 30.530 227.35 17.323 10.432 24.698 5.785 0 0.717 45.631 -1239 +Sep 405.55 0.172 0 0 193.72 91.887 0 101.56 0 55.517 0 1.092 0 139.06 564.10 32.903 206.32 32.174 10.433 24.700 5.617 0 0.991 42.265 -1097 +Oct 739.49 0 3.826 0 227.67 147.53 0 41.865 0.822 57.368 0 1.501 0 156.89 619.94 37.122 199.46 32.177 15.647 37.045 5.785 0 7.792 35.050 -888.0 +Nov 1462.9 0 301.74 70.349 258.06 218.56 0 0 66.052 55.595 0 35.896 0 164.68 624.81 39.004 177.10 32.176 10.804 25.580 6.865 0 3.235 21.614 -649.2 +Dec 2906.1 0 1074.4 257.09 209.50 312.45 0 0 237.43 57.368 0 60.463 0 175.95 662.23 41.632 173.44 24.748 14.531 34.404 7.345 0 2.271 10.767 -449.9 + +Yr 13436 302.84 3781.0 772.48 2624.7 2081.3 0 554.14 834.00 675.46 0 256.18 0 1725.5 6914.3 408.27 2319.6 331.64 141.21 334.32 74.026 0 36.763 390.08 -11122 + + + +Monthly Energy Use, All Meters, Jan + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 3001.0 0 1169.0 190.50 227.41 303.68 0 0 257.63 57.368 0 76.022 0 174.48 654.88 41.285 173.70 24.751 10.805 25.581 6.879 0 4.441 9.800 -407.3 +MtrElecPeak 489.16 0 147.72 6.539 51.721 72.411 0 0 32.075 11.952 0 8.462 0 52.694 162.31 7.441 41.534 4.949 2.438 7.438 4.050 0 0.579 -79.77 -45.37 +MtrElecOffPeak 2511.8 0 1021.3 183.97 175.69 231.27 0 0 225.56 45.416 0 67.560 0 121.79 492.58 33.844 132.17 19.802 8.366 18.143 2.830 0 3.862 89.573 -361.9 +MtrElec 3001.0 0 1169.0 190.50 227.41 303.68 0 0 257.63 57.368 0 76.022 0 174.48 654.88 41.285 173.70 24.751 10.805 25.581 6.879 0 4.441 9.800 -407.3 +MtrElec2 -224.4 0 0 0 0 0 0 0 0 0 0 0 0 0 182.92 0 0 0 0 0 0 0 0 0 -407.3 +MtrElecPV -407.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -407.3 +MtrNatGas 352.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223.36 0 129.15 0 0 0 0 + +Sum 8723.8 0 3507.1 571.51 682.23 911.04 0 0 772.90 172.10 0 228.07 0 523.46 2147.6 123.85 521.10 74.253 255.77 76.743 149.79 0 13.323 29.400 -2036 + + +Monthly Energy Use, All Meters, Feb + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 2190.9 0 858.40 212.99 251.16 282.12 0 0 190.24 51.816 0 49.817 0 147.00 544.17 34.783 158.45 22.275 11.549 27.344 6.049 0 4.317 20.950 -682.5 +MtrElecPeak 196.86 0 67.339 0.607 49.590 20.471 0 0 14.625 10.795 0 3.003 0 44.395 135.11 6.275 38.318 2.474 2.608 6.241 3.589 0 0.238 -134.6 -74.20 +MtrElecOffPeak 1994.0 0 791.06 212.38 201.57 261.65 0 0 175.61 41.021 0 46.815 0 102.61 409.06 28.508 120.13 19.801 8.942 21.103 2.460 0 4.079 155.57 -608.3 +MtrElec 2190.9 0 858.40 212.99 251.16 282.12 0 0 190.24 51.816 0 49.817 0 147.00 544.17 34.783 158.45 22.275 11.549 27.344 6.049 0 4.317 20.950 -682.5 +MtrElec2 -533.1 0 0 0 0 0 0 0 0 0 0 0 0 0 149.37 0 0 0 0 0 0 0 0 0 -682.5 +MtrElecPV -682.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -682.5 +MtrNatGas 352.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 238.75 0 113.56 0 0 0 0 + +Sum 5709.4 0 2575.2 638.96 753.47 846.37 0 0 570.71 155.45 0 149.45 0 441.01 1781.9 104.35 475.35 66.825 273.40 82.032 131.71 0 12.950 62.851 -3413 + + +Monthly Energy Use, All Meters, Mar + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 897.62 0 140.03 6.245 296.55 172.39 0 0 30.761 57.291 0 8.872 0 149.49 578.24 35.336 185.49 34.647 13.413 31.756 6.753 0 1.865 29.827 -881.3 +MtrElecPeak 90.435 0 12.188 0 61.729 39.137 0 0 2.641 11.952 0 0.682 0 45.167 143.40 6.383 44.877 6.950 4.587 10.220 4.006 0 0.671 -119.0 -185.2 +MtrElecOffPeak 807.18 0 127.84 6.245 234.83 133.25 0 0 28.120 45.339 0 8.189 0 104.32 434.84 28.952 140.61 27.697 8.826 21.536 2.747 0 1.194 148.80 -696.2 +MtrElec 897.62 0 140.03 6.245 296.55 172.39 0 0 30.761 57.291 0 8.872 0 149.49 578.24 35.336 185.49 34.647 13.413 31.756 6.753 0 1.865 29.827 -881.3 +MtrElec2 -710.8 0 0 0 0 0 0 0 0 0 0 0 0 0 170.59 0 0 0 0 0 0 0 0 0 -881.3 +MtrElecPV -881.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -881.3 +MtrNatGas 404.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277.28 0 126.78 0 0 0 0 + +Sum 1504.8 0 420.09 18.736 889.66 517.18 0 0 92.282 171.87 0 26.615 0 448.46 1905.3 106.01 556.47 103.94 317.51 95.269 147.04 0 5.596 89.482 -4407 + + +Monthly Energy Use, All Meters, Apr + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 775.28 0 233.64 35.302 244.68 193.20 0 0 51.068 55.517 0 18.016 0 131.96 550.53 31.224 181.08 34.649 10.433 24.701 5.410 0 6.627 42.330 -1075 +MtrElecPeak -28.53 0 0.897 0 45.924 36.190 0 0 0.191 11.566 0 0.136 0 39.853 135.96 5.641 43.695 6.023 1.118 6.056 3.251 0 0.752 -119.5 -246.3 +MtrElecOffPeak 803.80 0 232.74 35.302 198.76 157.01 0 0 50.876 43.951 0 17.880 0 92.110 414.57 25.583 137.38 28.626 9.315 18.646 2.159 0 5.875 161.85 -828.8 +MtrElec 775.28 0 233.64 35.302 244.68 193.20 0 0 51.068 55.517 0 18.016 0 131.96 550.53 31.224 181.08 34.649 10.433 24.701 5.410 0 6.627 42.330 -1075 +MtrElec2 -905.2 0 0 0 0 0 0 0 0 0 0 0 0 0 169.92 0 0 0 0 0 0 0 0 0 -1075 +MtrElecPV -1075 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1075 +MtrNatGas 317.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 215.67 0 101.57 0 0 0 0 + +Sum 662.82 0 700.91 105.90 734.04 579.59 0 0 153.20 166.55 0 54.048 0 395.89 1821.5 93.672 543.23 103.95 246.97 74.103 117.80 0 19.881 126.99 -5375 + + +Monthly Energy Use, All Meters, May + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 181.28 0 0 0 238.97 98.534 0 56.371 0 57.368 0 4.504 0 123.17 533.45 29.142 202.29 24.749 8.941 21.169 5.603 0 1.357 45.334 -1270 +MtrElecPeak -92.72 0 0 0 41.424 12.007 0 13.212 0 11.952 0 0 0 37.196 131.84 5.252 48.537 0 1.909 5.533 3.298 0 0.0155 -122.9 -282.0 +MtrElecOffPeak 273.99 0 0 0 197.55 86.527 0 43.160 0 45.416 0 4.504 0 85.970 401.60 23.890 153.75 24.749 7.032 15.636 2.305 0 1.341 168.24 -987.7 +MtrElec 181.28 0 0 0 238.97 98.534 0 56.371 0 57.368 0 4.504 0 123.17 533.45 29.142 202.29 24.749 8.941 21.169 5.603 0 1.357 45.334 -1270 +MtrElec2 -1101 0 0 0 0 0 0 0 0 0 0 0 0 0 168.44 0 0 0 0 0 0 0 0 0 -1270 +MtrElecPV -1270 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1270 +MtrNatGas 290.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 184.84 0 105.19 0 0 0 0 + +Sum -1537 0 0 0 716.92 295.60 0 169.11 0 172.10 0 13.512 0 369.50 1768.8 87.427 606.87 74.248 211.66 63.508 122.00 0 4.070 136.00 -6348 + + +Monthly Energy Use, All Meters, Jun + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 299.63 45.687 0 0 182.90 127.29 0 111.28 0 55.517 0 0 0 113.52 494.97 26.859 208.23 27.225 13.414 31.758 5.690 0 2.790 39.949 -1187 +MtrElecPeak -66.82 31.835 0 0 31.044 0 0 16.166 0 11.566 0 0 0 34.282 122.14 4.853 49.559 6.023 4.296 12.229 3.419 0 0.0236 -117.6 -276.6 +MtrElecOffPeak 366.45 13.852 0 0 151.85 127.29 0 95.116 0 43.951 0 0 0 79.235 372.84 22.007 158.67 21.202 9.118 19.529 2.271 0 2.767 157.58 -910.8 +MtrElec 299.63 45.687 0 0 182.90 127.29 0 111.28 0 55.517 0 0 0 113.52 494.97 26.859 208.23 27.225 13.414 31.758 5.690 0 2.790 39.949 -1187 +MtrElec2 -1022 0 0 0 0 0 0 0 0 0 0 0 0 0 165.15 0 0 0 0 0 0 0 0 0 -1187 +MtrElecPV -1187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1187 +MtrNatGas 384.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277.29 0 106.82 0 0 0 0 + +Sum -926.8 137.06 0 0 548.69 381.86 0 333.85 0 166.55 0 0 0 340.55 1650.1 80.578 624.69 81.675 317.53 95.275 123.89 0 8.371 119.85 -5937 + + +Monthly Energy Use, All Meters, Jul + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 261.34 148.86 0 0 158.69 47.654 0 120.13 0 57.368 0 0 0 120.23 533.84 28.448 226.68 24.748 10.804 25.579 6.244 0 0.360 46.561 -1295 +MtrElecPeak -73.94 105.86 0 0 35.936 11.222 0 27.367 0 11.952 0 0 0 36.310 131.55 5.136 53.494 3.402 0.846 3.334 3.732 0 0.104 -194.5 -309.7 +MtrElecOffPeak 335.28 43.004 0 0 122.76 36.432 0 92.763 0 45.416 0 0 0 83.923 402.29 23.312 173.19 21.347 9.958 22.245 2.512 0 0.256 241.06 -985.2 +MtrElec 261.34 148.86 0 0 158.69 47.654 0 120.13 0 57.368 0 0 0 120.23 533.84 28.448 226.68 24.748 10.804 25.579 6.244 0 0.360 46.561 -1295 +MtrElec2 -1113 0 0 0 0 0 0 0 0 0 0 0 0 0 181.99 0 0 0 0 0 0 0 0 0 -1295 +MtrElecPV -1295 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1295 +MtrNatGas 340.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223.34 0 117.23 0 0 0 0 + +Sum -1283 446.58 0 0 476.07 142.96 0 360.39 0 172.10 0 0 0 360.70 1783.5 85.345 680.05 74.245 255.75 76.738 135.96 0 1.081 139.68 -6474 + + +Monthly Energy Use, All Meters, Aug + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 314.93 108.12 0 0 135.39 85.951 0 122.93 0 57.368 0 0 0 129.03 553.17 30.530 227.35 17.323 10.432 24.698 5.785 0 0.717 45.631 -1239 +MtrElecPeak -57.09 81.049 0 0 22.882 24.885 0 20.484 0 11.952 0 0 0 38.967 136.48 5.507 53.774 4.948 2.710 6.208 3.432 0 0.375 -187.4 -283.4 +MtrElecOffPeak 372.02 27.073 0 0 112.50 61.066 0 102.45 0 45.416 0 0 0 90.064 416.69 25.023 173.58 12.375 7.722 18.489 2.354 0 0.342 232.99 -956.1 +MtrElec 314.93 108.12 0 0 135.39 85.951 0 122.93 0 57.368 0 0 0 129.03 553.17 30.530 227.35 17.323 10.432 24.698 5.785 0 0.717 45.631 -1239 +MtrElec2 -1056 0 0 0 0 0 0 0 0 0 0 0 0 0 183.88 0 0 0 0 0 0 0 0 0 -1239 +MtrElecPV -1239 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1239 +MtrNatGas 324.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 215.64 0 108.61 0 0 0 0 + +Sum -1026 324.37 0 0 406.16 257.85 0 368.80 0 172.10 0 0 0 387.09 1843.4 91.590 682.05 51.970 246.94 74.093 125.97 0 2.152 136.89 -6197 -Yr 2841.5 218.76 367.81 29.867 538.11 400.05 0 92.536 80.020 140.72 0 21.292 0 521.09 1709.8 73.656 554.90 68.418 32.898 89.642 43.971 0 9.709 0 -2152 + +Monthly Energy Use, All Meters, Sep + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 405.55 0.172 0 0 193.72 91.887 0 101.56 0 55.517 0 1.092 0 139.06 564.10 32.903 206.32 32.174 10.433 24.700 5.617 0 0.991 42.265 -1097 +MtrElecPeak -43.18 0.0217 0 0 37.724 33.765 0 7.197 0 11.566 0 0 0 41.996 139.33 5.939 49.239 8.498 1.972 6.595 3.349 0 0.323 -169.9 -220.8 +MtrElecOffPeak 448.74 0.150 0 0 156.00 58.122 0 94.361 0 43.951 0 1.092 0 97.063 424.77 26.964 157.08 23.676 8.461 18.105 2.268 0 0.667 212.16 -876.2 +MtrElec 405.55 0.172 0 0 193.72 91.887 0 101.56 0 55.517 0 1.092 0 139.06 564.10 32.903 206.32 32.174 10.433 24.700 5.617 0 0.991 42.265 -1097 +MtrElec2 -919.5 0 0 0 0 0 0 0 0 0 0 0 0 0 177.44 0 0 0 0 0 0 0 0 0 -1097 +MtrElecPV -1097 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1097 +MtrNatGas 321.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 215.66 0 105.45 0 0 0 0 + +Sum -478.7 0.515 0 0 581.17 275.66 0 304.67 0 166.55 0 3.276 0 417.17 1869.7 98.708 618.96 96.521 246.96 74.100 122.30 0 2.972 126.79 -5485 + + +Monthly Energy Use, All Meters, Oct + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 739.49 0 3.826 0 227.67 147.53 0 41.865 0.822 57.368 0 1.501 0 156.89 619.94 37.122 199.46 32.177 15.647 37.045 5.785 0 7.792 35.050 -888.0 +MtrElecPeak 68.144 0 0 0 39.609 35.733 0 8.111 0 11.952 0 0 0 47.381 153.07 6.702 47.810 9.899 3.629 9.918 3.458 0 4.859 -157.8 -156.2 +MtrElecOffPeak 671.35 0 3.826 0 188.06 111.80 0 33.754 0.822 45.416 0 1.501 0 109.51 466.87 30.419 151.65 22.278 12.018 27.127 2.328 0 2.934 192.87 -731.8 +MtrElec 739.49 0 3.826 0 227.67 147.53 0 41.865 0.822 57.368 0 1.501 0 156.89 619.94 37.122 199.46 32.177 15.647 37.045 5.785 0 7.792 35.050 -888.0 +MtrElec2 -698.7 0 0 0 0 0 0 0 0 0 0 0 0 0 189.25 0 0 0 0 0 0 0 0 0 -888.0 +MtrElecPV -888.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -888.0 +MtrNatGas 432.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 323.46 0 108.61 0 0 0 0 + +Sum 1063.8 0 11.478 0 683.01 442.60 0 125.59 2.465 172.10 0 4.504 0 470.67 2049.1 111.37 598.37 96.531 370.40 111.14 125.97 0 23.377 105.15 -4440 + + +Monthly Energy Use, All Meters, Nov + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 1462.9 0 301.74 70.349 258.06 218.56 0 0 66.052 55.595 0 35.896 0 164.68 624.81 39.004 177.10 32.176 10.804 25.580 6.865 0 3.235 21.614 -649.2 +MtrElecPeak 206.06 0 18.471 0.0403 55.176 41.326 0 0 3.995 11.566 0 1.774 0 49.709 154.67 7.010 42.634 9.229 2.481 5.293 3.998 0 0.508 -162.9 -38.90 +MtrElecOffPeak 1256.9 0 283.27 70.309 202.89 177.24 0 0 62.057 44.028 0 34.121 0 114.97 470.14 31.994 134.47 22.947 8.323 20.287 2.867 0 2.727 184.53 -610.3 +MtrElec 1462.9 0 301.74 70.349 258.06 218.56 0 0 66.052 55.595 0 35.896 0 164.68 624.81 39.004 177.10 32.176 10.804 25.580 6.865 0 3.235 21.614 -649.2 +MtrElec2 -472.5 0 0 0 0 0 0 0 0 0 0 0 0 0 176.69 0 0 0 0 0 0 0 0 0 -649.2 +MtrElecPV -649.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -649.2 +MtrNatGas 352.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223.34 0 128.88 0 0 0 0 + +Sum 3619.4 0 905.22 211.05 774.18 655.68 0 0 198.16 166.78 0 107.69 0 494.05 2051.1 117.01 531.30 96.528 255.76 76.739 149.48 0 9.705 64.841 -3246 + + +Monthly Energy Use, All Meters, Dec + +Meter Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +----------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +MtrElecRecomb 2906.1 0 1074.4 257.09 209.50 312.45 0 0 237.43 57.368 0 60.463 0 175.95 662.23 41.632 173.44 24.748 14.531 34.404 7.345 0 2.271 10.767 -449.9 +MtrElecPeak 495.49 0 121.19 22.680 65.352 72.908 0 0 26.493 11.952 0 7.234 0 53.137 163.92 7.517 41.429 6.023 4.304 10.575 4.390 0 1.261 -91.74 -33.14 +MtrElecOffPeak 2410.6 0 953.17 234.41 144.14 239.54 0 0 210.94 45.416 0 53.229 0 122.81 498.31 34.115 132.01 18.725 10.228 23.829 2.955 0 1.010 102.51 -416.7 +MtrElec 2906.1 0 1074.4 257.09 209.50 312.45 0 0 237.43 57.368 0 60.463 0 175.95 662.23 41.632 173.44 24.748 14.531 34.404 7.345 0 2.271 10.767 -449.9 +MtrElec2 -267.2 0 0 0 0 0 0 0 0 0 0 0 0 0 182.62 0 0 0 0 0 0 0 0 0 -449.9 +MtrElecPV -449.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -449.9 +MtrNatGas 438.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300.40 0 137.89 0 0 0 0 + +Sum 8439.5 0 3223.1 771.28 628.49 937.36 0 0 712.29 172.10 0 181.39 0 527.85 2169.3 124.90 520.31 74.243 343.99 103.21 159.92 0 6.812 32.302 -2249 @@ -154,39 +380,79 @@ Daily Energy Use, meter "MtrElecPeak", Jul Day Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ - 1 1.967 3.204 0 0 0 0 0 0.781 0 0.386 0 0 0 1.171 4.230 0.167 1.789 0 0 0 0.129 0 0 0 -9.889 - 2 10.535 9.296 0 0 0 0 0 2.195 0 0.386 0 0 0 1.171 4.230 0.167 1.814 0 0 0.882 0.129 0 0 0 -9.734 - 3 21.178 18.696 0 0 0 0 0 4.282 0 0.386 0 0 0 1.171 4.277 0.162 1.838 0 0 0 0.101 0 0 0 -9.735 - 4 19.443 17.351 0 0 0 0 0 4.015 0 0.386 0 0 0 1.171 4.277 0.162 1.849 0 0 0 0.101 0 0 0 -9.869 - 5 21.514 18.809 0 0 0 0 0 4.323 0 0.386 0 0 0 1.171 4.277 0.162 1.853 0 0 0 0.101 0 0 0 -9.567 - 6 21.730 15.603 0 0 4.145 0 0 3.782 0 0.386 0 0 0 1.171 4.230 0.167 1.804 0 0 0 0.129 0 0 0 -9.686 - 7 10.475 10.097 0 0 0 0 0 2.545 0 0.386 0 0 0 1.171 4.230 0.167 1.803 0 0 0 0.129 0 0 0 -10.05 - 8 14.236 10.175 0 0 3.569 0 0 2.458 0 0.386 0 0 0 1.171 4.230 0.167 1.802 0 0 0 0.129 0 0 0 -9.851 - 9 -2.587 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.744 0 0 0 0.129 0 0 0 -10.41 - 10 -2.405 0 0 0 0.0275 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.715 0 0 0 0.129 0 .00124 0 -10.23 - 11 -1.419 0 0 0 0 0 0 1.087 0 0.386 0 0 0 1.171 4.277 0.162 1.691 0 0 0 0.101 0 0 0 -10.29 - 12 2.009 0 0 0 4.130 0 0 0.251 0 0.386 0 0 0 1.171 4.277 0.162 1.658 0 0 0 0.101 0 0 0 -10.13 - 13 -1.243 0 0 0 0 0 0 0.585 0 0.386 0 0 0 1.171 4.230 0.167 1.606 0 0 0.882 0.129 0 0 0 -10.40 - 14 2.222 0 0 0 2.265 0 0 0.167 0 0.386 0 0 0 1.171 4.230 0.167 1.596 2.474 0 0 0.129 0 0 0 -10.36 - 15 -2.279 0 0 0 0 0 0 0.251 0 0.386 0 0 0 1.171 4.230 0.167 1.609 0 0 0 0.129 0 0 0 -10.22 - 16 0.607 0 0 0 2.894 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.595 0 0 0.241 0.129 0 0 0 -10.21 - 17 -2.615 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.609 0 0 0 0.129 0 0 0 -10.31 - 18 1.279 0 0 0 3.427 0 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.672 0 0 0 0.101 0 0 0 -9.916 - 19 -0.422 0 0 0 0.422 0.256 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.715 0 0.291 0.882 0.101 0 0.0470 0 -10.13 - 20 0.733 0 0 0 2.774 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.739 0 0 0 0.129 0 0 0 -9.862 - 21 1.511 1.120 0 0 2.107 0 0 0.274 0 0.386 0 0 0 1.171 4.230 0.167 1.775 0 0 0 0.129 0 0.0232 0 -9.871 - 22 -1.251 0.623 0 0 0 0 0 0.155 0 0.386 0 0 0 1.171 4.230 0.167 1.761 0 0 0 0.129 0 0 0 -9.872 - 23 -2.321 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.719 0 0 0 0.129 0 0 0 -10.12 - 24 -2.454 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.692 0 0 0 0.129 0 0 0 -10.23 - 25 10.661 0 0 0 2.032 10.966 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.694 0 0 0 0.101 0 0.0321 0 -10.16 - 26 0.333 0 0 0 2.406 0 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.740 0 0 0 0.101 0 0 0 -9.910 - 27 -0.967 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.756 0.927 0 0 0.129 0 0 0 -9.732 - 28 0.0978 0.881 0 0 0.864 0 0 0.216 0 0.386 0 0 0 1.171 4.230 0.167 1.762 0 0 0 0.129 0 0 0 -9.708 - 29 -1.810 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.745 0 0 0 0.129 0 0 0 -9.637 - 30 1.499 0 0 0 2.452 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.677 0 0.555 0.447 0.129 0 0 0 -9.714 - 31 0.307 0 0 0 2.421 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.676 0 0 0 0.129 0 .00062 0 -9.873 - -Mon 120.56 105.86 0 0 35.936 11.222 0 27.367 0 11.952 0 0 0 36.310 131.55 5.136 53.494 3.402 0.846 3.334 3.732 0 0.104 0 -309.7 + 1 -4.619 3.204 0 0 0 0 0 0.781 0 0.386 0 0 0 1.171 4.230 0.167 1.789 0 0 0 0.129 0 0 -6.586 -9.889 + 2 -3.241 9.296 0 0 0 0 0 2.195 0 0.386 0 0 0 1.171 4.230 0.167 1.814 0 0 0.882 0.129 0 0 -13.78 -9.734 + 3 8.528 18.696 0 0 0 0 0 4.282 0 0.386 0 0 0 1.171 4.277 0.162 1.838 0 0 0 0.101 0 0 -12.65 -9.735 + 4 7.376 17.351 0 0 0 0 0 4.015 0 0.386 0 0 0 1.171 4.277 0.162 1.849 0 0 0 0.101 0 0 -12.07 -9.869 + 5 7.737 18.809 0 0 0 0 0 4.323 0 0.386 0 0 0 1.171 4.277 0.162 1.853 0 0 0 0.101 0 0 -13.78 -9.567 + 6 7.954 15.603 0 0 4.145 0 0 3.782 0 0.386 0 0 0 1.171 4.230 0.167 1.804 0 0 0 0.129 0 0 -13.78 -9.686 + 7 -3.301 10.097 0 0 0 0 0 2.545 0 0.386 0 0 0 1.171 4.230 0.167 1.803 0 0 0 0.129 0 0 -13.78 -10.05 + 8 0.459 10.175 0 0 3.569 0 0 2.458 0 0.386 0 0 0 1.171 4.230 0.167 1.802 0 0 0 0.129 0 0 -13.78 -9.851 + 9 -5.426 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.744 0 0 0 0.129 0 0 -2.839 -10.41 + 10 -5.267 0 0 0 0.0275 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.715 0 0 0 0.129 0 .00124 -2.862 -10.23 + 11 -5.190 0 0 0 0 0 0 1.087 0 0.386 0 0 0 1.171 4.277 0.162 1.691 0 0 0 0.101 0 0 -3.771 -10.29 + 12 -2.954 0 0 0 4.130 0 0 0.251 0 0.386 0 0 0 1.171 4.277 0.162 1.658 0 0 0 0.101 0 0 -4.963 -10.13 + 13 -5.511 0 0 0 0 0 0 0.585 0 0.386 0 0 0 1.171 4.230 0.167 1.606 0 0 0.882 0.129 0 0 -4.268 -10.40 + 14 -2.188 0 0 0 2.265 0 0 0.167 0 0.386 0 0 0 1.171 4.230 0.167 1.596 2.474 0 0 0.129 0 0 -4.411 -10.36 + 15 -5.287 0 0 0 0 0 0 0.251 0 0.386 0 0 0 1.171 4.230 0.167 1.609 0 0 0 0.129 0 0 -3.008 -10.22 + 16 -4.884 0 0 0 2.894 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.595 0 0 0.241 0.129 0 0 -5.491 -10.21 + 17 -5.453 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.609 0 0 0 0.129 0 0 -2.838 -10.31 + 18 -4.576 0 0 0 3.427 0 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.672 0 0 0 0.101 0 0 -5.855 -9.916 + 19 -5.162 0 0 0 0.422 0.256 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.715 0 0.291 0.882 0.101 0 0.0470 -4.740 -10.13 + 20 -4.943 0 0 0 2.774 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.739 0 0 0 0.129 0 0 -5.677 -9.862 + 21 -4.940 1.120 0 0 2.107 0 0 0.274 0 0.386 0 0 0 1.171 4.230 0.167 1.775 0 0 0 0.129 0 0.0232 -6.451 -9.871 + 22 -1.092 0.623 0 0 0 0 0 0.155 0 0.386 0 0 0 1.171 4.230 0.167 1.761 0 0 0 0.129 0 0 0.159 -9.872 + 23 -5.197 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.719 0 0 0 0.129 0 0 -2.876 -10.12 + 24 -5.325 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.692 0 0 0 0.129 0 0 -2.871 -10.23 + 25 3.320 0 0 0 2.032 10.966 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.694 0 0 0 0.101 0 0.0321 -7.342 -10.16 + 26 -4.927 0 0 0 2.406 0 0 0 0 0.386 0 0 0 1.171 4.277 0.162 1.740 0 0 0 0.101 0 0 -5.259 -9.910 + 27 -4.837 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.756 0.927 0 0 0.129 0 0 -3.871 -9.732 + 28 -3.976 0.881 0 0 0.864 0 0 0.216 0 0.386 0 0 0 1.171 4.230 0.167 1.762 0 0 0 0.129 0 0 -4.074 -9.708 + 29 -4.729 0 0 0 0 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.745 0 0 0 0.129 0 0 -2.918 -9.637 + 30 -1.441 0 0 0 2.452 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.677 0 0.555 0.447 0.129 0 0 -2.940 -9.714 + 31 -4.846 0 0 0 2.421 0 0 0 0 0.386 0 0 0 1.171 4.230 0.167 1.676 0 0 0 0.129 0 .00062 -5.153 -9.873 + +Mon -73.94 105.86 0 0 35.936 11.222 0 27.367 0 11.952 0 0 0 36.310 131.55 5.136 53.494 3.402 0.846 3.334 3.732 0 0.104 -194.5 -309.7 + + + +Daily Energy Use, meter "MtrElecOffPeak", Jul + +Day Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 9.817 1.851 0 0 3.099 0 0 2.743 0 1.465 0 0 0 2.707 12.991 0.751 5.828 0 0.745 1.764 0.0729 0 0 8.074 -32.27 + 2 22.025 4.362 0 0 4.350 0 0 2.629 0 1.465 0 0 0 2.707 12.991 0.751 5.863 2.475 0.373 0 0.0729 0 0 15.265 -31.28 + 3 41.788 8.472 0 0 6.390 8.041 0 3.012 0 1.465 0 0 0 2.707 12.943 0.755 6.042 4.949 1.490 3.528 0.101 0 0.0215 14.138 -32.27 + 4 33.405 6.547 0 0 5.795 9.214 0 3.144 0 1.465 0 0 0 2.707 12.943 0.755 6.052 2.475 0 0 0.101 0 0 13.626 -31.42 + 5 18.701 7.197 0 0 0 0 0 3.058 0 1.465 0 0 0 2.707 12.943 0.755 6.091 0 0 0 0.101 0 0 15.265 -30.88 + 6 28.444 5.621 0 0 6.331 0 0 2.996 0 1.465 0 0 0 2.707 12.991 0.751 5.928 2.475 0.745 1.764 0.0729 0 0 15.265 -30.67 + 7 34.161 4.141 0 0 8.432 8.803 0 2.987 0 1.465 0 0 0 2.707 12.991 0.751 5.843 0 0.745 1.764 0.0729 0 0.111 15.265 -31.92 + 8 16.188 3.542 0 0 1.960 0 0 3.211 0 1.465 0 0 0 2.707 12.991 0.751 5.854 0 0 0 0.0729 0 0 15.265 -31.63 + 9 5.538 0 0 0 2.813 0 0 4.432 0 1.465 0 0 0 2.707 12.991 0.751 5.725 0 0.372 0.882 0.0729 0 0 6.931 -33.60 + 10 -1.381 0 0 0 1.805 0 0 4.097 0 1.465 0 0 0 2.707 12.991 0.751 5.547 0 0 0 0.0729 0 0 2.719 -33.54 + 11 5.595 0 0 0 3.309 0 0 4.850 0 1.465 0 0 0 2.707 12.943 0.755 5.539 0 0.373 0.882 0.101 0 0 6.043 -33.37 + 12 0.144 0 0 0 0 0 0 4.348 0 1.465 0 0 0 2.707 12.943 0.755 5.394 0 0 0 0.101 0 0.0106 5.272 -32.85 + 13 17.356 0 0 0 9.758 0 0 4.850 0 1.465 0 0 0 2.707 12.991 0.751 5.178 0 0.373 0 0.0729 0 0 5.179 -25.97 + 14 7.670 0 0 0 6.469 0 0 4.432 0 1.465 0 0 0 2.707 12.991 0.751 5.088 0 0.0950 0.882 0.0729 0 0 5.899 -33.18 + 15 1.805 0 0 0 1.272 0 0 4.181 0 1.465 0 0 0 2.707 12.991 0.751 5.114 0 0.277 0 0.0729 0 0 5.700 -32.73 + 16 -0.964 0 0 0 0.966 0 0 0 0 1.465 0 0 0 2.707 12.991 0.751 5.110 0 0.373 0.641 0.0729 0 0 6.242 -32.28 + 17 5.488 0 0 0 4.578 0 0 0 0 1.465 0 0 0 2.707 12.991 0.751 5.161 2.475 0 0 0.0729 0 0 7.822 -32.53 + 18 -1.257 0 0 0 2.659 0 0 0 0 1.465 0 0 0 2.707 12.943 0.755 5.363 0 0 0 0.101 0 0 4.554 -31.81 + 19 6.133 0 0 0 4.175 4.702 0 0 0 1.465 0 0 0 2.707 12.943 0.755 5.513 0 0.266 0.882 0.101 0 0.0148 5.055 -32.45 + 20 8.303 0 0 0 5.937 0 0 1.505 0 1.465 0 0 0 2.707 12.991 0.751 5.544 0 0.561 0.882 0.0729 0 0 7.165 -31.28 + 21 4.118 0.631 0 0 0.657 0 0 2.422 0 1.465 0 0 0 2.707 12.991 0.751 5.725 0 0 0 0.0729 0 0 7.939 -31.24 + 22 9.862 0.240 0 0 10.388 0 0 3.073 0 1.465 0 0 0 2.707 12.991 0.751 5.674 2.475 0 0 0.0729 0 0 1.329 -31.30 + 23 8.673 0 0 0 6.521 0 0 3.846 0 1.465 0 0 0 2.707 12.991 0.751 5.562 0 0.745 1.764 0.0729 0 0 4.365 -32.12 + 24 8.357 0 0 0 2.911 0 0 3.679 0 1.465 0 0 0 2.707 12.991 0.751 5.464 2.474 0.373 0.882 0.0729 0 0 7.199 -32.61 + 25 13.543 0 0 0 4.994 5.672 0 3.512 0 1.465 0 0 0 2.707 12.943 0.755 5.508 0 0.745 1.764 0.101 0 0.0957 5.931 -32.65 + 26 2.806 0 0 0 0 0 0 3.178 0 1.465 0 0 0 2.707 12.943 0.755 5.627 0 0 0 0.101 0 0 7.691 -31.66 + 27 8.836 0 0 0 7.686 0 0 2.425 0 1.465 0 0 0 2.707 12.991 0.751 5.596 1.548 0 0 0.0729 0 0 4.416 -30.82 + 28 6.966 0.401 0 0 1.480 0 0 2.781 0 1.465 0 0 0 2.707 12.991 0.751 5.708 0 0.745 1.764 0.0729 0 0 7.127 -31.03 + 29 7.203 0 0 0 6.182 0 0 3.763 0 1.465 0 0 0 2.707 12.991 0.751 5.620 0 0.373 0.882 0.0729 0 0 2.842 -30.44 + 30 6.192 0 0 0 1.834 0 0 3.763 0 1.465 0 0 0 2.707 12.991 0.751 5.497 0 0.190 1.317 0.0729 0 0 7.034 -31.43 + 31 -0.235 0 0 0 0 0 0 3.846 0 1.465 0 0 0 2.707 12.991 0.751 5.430 0 0 0 0.0729 0 .00253 4.447 -31.95 + +Mon 335.28 43.004 0 0 122.76 36.432 0 92.763 0 45.416 0 0 0 83.923 402.29 23.312 173.19 21.347 9.958 22.245 2.512 0 0.256 241.06 -985.2 @@ -209,17 +475,50 @@ Hr Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 16 -2.748 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.101 0.713 0.0110 0.346 0 0 0 0.0137 0 0 0 -4.009 - 17 2.309 3.247 0 0 0 0 0 0.718 0 0.0771 0 0 0 0.120 0.788 0.0174 0.364 0 0 0 0.0183 0 0 0 -3.041 - 18 6.325 5.399 0 0 0 0 0 1.227 0 0.0771 0 0 0 0.171 0.875 0.0349 0.375 0 0 0 0.0280 0 0 0 -1.862 - 19 7.662 5.308 0 0 0 0 0 1.227 0 0.0771 0 0 0 0.326 0.933 0.0440 0.377 0 0 0 0.0260 0 0 0 -0.656 + 16 -1.620 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.101 0.713 0.0110 0.346 0 0 0 0.0137 0 0 1.127 -4.009 + 17 0 3.247 0 0 0 0 0 0.718 0 0.0771 0 0 0 0.120 0.788 0.0174 0.364 0 0 0 0.0183 0 0 -2.309 -3.041 + 18 0.232 5.399 0 0 0 0 0 1.227 0 0.0771 0 0 0 0.171 0.875 0.0349 0.375 0 0 0 0.0280 0 0 -6.093 -1.862 + 19 2.287 5.308 0 0 0 0 0 1.227 0 0.0771 0 0 0 0.326 0.933 0.0440 0.377 0 0 0 0.0260 0 0 -5.375 -0.656 20 7.630 4.742 0 0 0 0 0 1.111 0 0.0771 0 0 0 0.454 0.968 0.0551 0.376 0 0 0 0.0145 0 0 0 -0.167 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Day 21.178 18.696 0 0 0 0 0 4.282 0 0.386 0 0 0 1.171 4.277 0.162 1.838 0 0 0 0.101 0 0 0 -9.735 +Day 8.528 18.696 0 0 0 0 0 4.282 0 0.386 0 0 0 1.171 4.277 0.162 1.838 0 0 0 0.101 0 0 -12.65 -9.735 + + + +Hourly Energy Use, meter "MtrElecOffPeak", Fri 03-Jul + +Hr Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + 1 1.159 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0892 0.638 0.0422 0.312 0 0 0 .00101 0 0 0 0 + 2 1.075 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0737 0.588 0.0422 0.293 0 0 0 .00081 0 0 0 0 + 3 1.021 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0582 0.558 0.0413 0.287 0 0 0 .00060 0 0 0 0 + 4 1.020 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0659 0.557 0.0413 0.278 0 0 0 .00060 0 0 0 0 + 5 1.006 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0814 0.531 0.0422 0.274 0 0 0 .00060 0 0 0 0 + 6 1.081 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.120 0.569 0.0413 0.272 0 0 0 .00101 0 0 0 0 + 7 3.483 0 0 0 0.704 1.280 0 0.502 0 0.0771 0 0 0 0.163 0.629 0.0404 0.284 0 0 0 .00201 0 0.0215 0 -0.219 + 8 7.961 0 0 0 0.819 6.762 0 0.334 0 0.0771 0 0 0 0.159 0.675 0.0376 0.296 0 0 0 .00544 0 0 0 -1.205 + 9 0.410 0 0 0 1.244 0 0 0 0 0.0771 0 0 0 0.132 0.650 0.0330 0.318 0 0 0.446 .00967 0 0 0 -2.499 + 10 0 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.112 0.637 0.0275 0.324 0 0.188 0.878 .00967 0 0 1.386 -3.641 + 11 0 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.105 0.648 0.0220 0.325 0 0.371 0.440 .00927 0 0 2.519 -4.515 + 12 0 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0970 0.637 0.0147 0.336 0 0.186 0.882 0.0111 0 0 2.811 -5.051 + 13 0 0 0 0 1.041 0 0 0 0 0.0771 0 0 0 0.0814 0.634 0.0110 0.346 0 0.372 0.882 0.0127 0 0 1.796 -5.254 + 14 0 0 0 0 1.474 0 0 0 0 0.0771 0 0 0 0.0814 0.652 0.0101 0.346 0 0.372 0 0.0119 0 0 2.112 -5.138 + 15 0 0 0 0 0 0 0 0 0 0.0771 0 0 0 0.0814 0.680 0.0101 0.345 0 0 0 0.0125 0 0 3.514 -4.720 + 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 21 5.860 3.147 0 0 0 0 0 0.763 0 0.0771 0 0 0 0.438 1.002 0.0762 0.375 0 0 0 .00645 0 0 0 -.0246 + 22 4.457 2.040 0 0 0 0 0 0.522 0 0.0771 0 0 0 0.372 0.995 0.0899 0.358 0 0 0 .00282 0 0 0 0 + 23 6.590 1.947 0 0 0 0 0 0.521 0 0.0771 0 0 0 0.244 0.897 0.0780 0.349 2.474 0 0 .00181 0 0 0 0 + 24 6.665 1.338 0 0 1.108 0 0 0.370 0 0.0771 0 0 0 0.151 0.767 0.0541 0.324 2.475 0 0 .00101 0 0 0 0 + +Day 41.788 8.472 0 0 6.390 8.041 0 3.012 0 1.465 0 0 0 2.707 12.943 0.755 6.042 4.949 1.490 3.528 0.101 0 0.0215 14.138 -32.27 @@ -2473,7 +2772,7 @@ LMClgPeak daily for Jul ! Log for Run 001: -! CSE 0.921.0+wudays-check.d4ed889a.60.dirty for Win32 console +! CSE 0.921.0+battery-submeter.366b46d9.134.dirty for Win32 console @@ -3546,7 +3845,9 @@ Input for Run 001: matCond = 0.09167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F matCondCT = 0.000122 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + METER "MtrElecRecomb" mtrSubmeters=MtrElecPeak, MtrElecOffPeak // should match MtrElec METER "MtrElecPeak" mtrSubmeters=MtrElec mtrSubMeterMults= tofloat( $hour > 15 && $hour < 21) + METER "MtrElecOffPeak" mtrSubmeters=MtrElec mtrSubMeterMults= tofloat( $hour <= 15 || $hour >= 21) METER "MtrElec" mtrSubmeters=MtrElec2 METER "MtrElec2" mtrSubmeters=MtrElecPV METER "MtrElecPV" @@ -5160,14 +5461,23 @@ Input for Run 001: # REPORTCOL colVal = @Rsys[s].AFUE colHead="AFUE" colDec=3 colWid=6 SYSINFHEAT( 1) - REPORT rpType=MTR rpMeter=MtrElec rpFreq=MONTH - REPORT rpType=MTR rpMeter=MtrElecPV rpFreq=MONTH - REPORT rpType=MTR rpMeter=MtrElec2 rpFreq=MONTH - REPORT rpType=MTR rpMeter=MtrNatGas rpFreq=MONTH + REPORT rpType=MTR rpMeter=MtrNatGas rpBtuSf=1000. rpFreq=MONTH + + REPORT rpType=MTR rpMeter=MtrElec rpBtuSf=1000. rpFreq=MONTH + REPORT rpType=MTR rpMeter=MtrElecPV rpBtuSf=1000. rpFreq=MONTH + REPORT rpType=MTR rpMeter=MtrElec2 rpBtuSf=1000. rpFreq=MONTH REPORT rpType=MTR rpMeter=MtrElecPeak rpBtuSf=1000. rpFreq=Month + REPORT rpType=MTR rpMeter=MtrElecOffPeak rpBtuSf=1000. rpFreq=Month + REPORT rpType=MTR rpMeter=MtrElecRecomb rpBtuSf=1000. rpFreq=Month + + REPORT rpType=MTR rpMeter=ALL rpBtuSf=1000. rpFreq=Month + REPORT rpType=MTR rpMeter=MtrElecPeak rpBtuSf=1000. rpFreq=Day rpDayBeg = jul 1 rpDayEnd = Jul 31 + REPORT rpType=MTR rpMeter=MtrElecOffPeak rpBtuSf=1000. rpFreq=Day rpDayBeg = jul 1 rpDayEnd = Jul 31 + REPORT rpType=MTR rpMeter=MtrElecPeak rpBtuSf=1000. rpFreq=Hour rpDayBeg = jul 3 rpDayEnd = Jul 3 + REPORT rpType=MTR rpMeter=MtrElecOffPeak rpBtuSf=1000. rpFreq=Hour rpDayBeg = jul 3 rpDayEnd = Jul 3 REPORT rpType=MTR rpMeter=MtrElec rpBtuSf=1000. rpFreq=Hour rpDayBeg = jul 3 rpDayEnd = Jul 3 // report columns: RSYS cooling subhour details @@ -5254,27 +5564,36 @@ Input for Run 001: RUN $EOF ----------------------- -??? SUBMETER.CSE(7119): Warning: +??? SUBMETER.CSE(5609): Info: +??? meter 'MtrElec': Duplicate reference from meter 'MtrElecRecomb' +----------------------- +??? SUBMETER.CSE(5610): Info: +??? meter 'MtrElec2': Duplicate reference from meter 'MtrElecRecomb' +----------------------- +??? SUBMETER.CSE(5611): Info: +??? meter 'MtrElecPV': Duplicate reference from meter 'MtrElecRecomb' +----------------------- +??? SUBMETER.CSE(7121): Info: ??? LOADMETER 'LMHtg': Duplicate reference from LOADMETER 'LMCancel' ----------------------- -??? SUBMETER.CSE(7120): Warning: +??? SUBMETER.CSE(7122): Info: ??? LOADMETER 'LMClg': Duplicate reference from LOADMETER 'LMCancel' ----------------------- -! CSE 0.921.0+wudays-check.d4ed889a.60.dirty for Win32 console run(s) done: Tue 27-Feb-24 2:52:31 pm +! CSE 0.921.0+battery-submeter.366b46d9.134.dirty for Win32 console run(s) done: Wed 27-Mar-24 10:54:18 am -! Executable: d:\cse\msvc\cse.exe -! 27-Feb-24 2:12 pm (VS 14.29 2873344 bytes) (HPWH 1.23.0+HEAD.4609465.28) +! Executable: d:\cse\builds\cse.exe +! 27-Mar-24 10:52 am (VS 14.29 2873344 bytes) (HPWH 1.23.0+HEAD.f90302f.61) ! Command line: -x! -t1 submeter ! Input file: D:\cse\test\submeter.cse ! Report file: D:\CSE\TEST\SUBMETER.REP ! Timing info -- -! Input: Time = 0.60 Calls = 2 T/C = 0.3025 -! AutoSizing: Time = 0.44 Calls = 1 T/C = 0.4430 -! Simulation: Time = 6.27 Calls = 1 T/C = 6.2730 -! Reports: Time = 0.01 Calls = 1 T/C = 0.0050 -! Total: Time = 7.33 Calls = 1 T/C = 7.3290 +! Input: Time = 0.61 Calls = 2 T/C = 0.3070 +! AutoSizing: Time = 0.45 Calls = 1 T/C = 0.4460 +! Simulation: Time = 6.42 Calls = 1 T/C = 6.4170 +! Reports: Time = 0.01 Calls = 1 T/C = 0.0060 +! Total: Time = 7.49 Calls = 1 T/C = 7.4870 diff --git a/test/submeter.cse b/test/submeter.cse index 13b9080d7..9da5f9170 100644 --- a/test/submeter.cse +++ b/test/submeter.cse @@ -5603,7 +5603,9 @@ MATERIAL "IntMassMat-Gypsum" matCond = 0.09167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F matCondCT = 0.000122 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) +METER "MtrElecRecomb" mtrSubmeters=MtrElecPeak, MtrElecOffPeak // should match MtrElec METER "MtrElecPeak" mtrSubmeters=MtrElec mtrSubMeterMults= tofloat( $hour > 15 && $hour < 21) +METER "MtrElecOffPeak" mtrSubmeters=MtrElec mtrSubMeterMults= tofloat( $hour <= 15 || $hour >= 21) METER "MtrElec" mtrSubmeters=MtrElec2 METER "MtrElec2" mtrSubmeters=MtrElecPV METER "MtrElecPV" @@ -7217,14 +7219,23 @@ SYSINFCOOL( 1) REPORTCOL colVal = @Rsys[s].AFUE colHead="AFUE" colDec=3 colWid=6 SYSINFHEAT( 1) - REPORT rpType=MTR rpMeter=MtrElec rpFreq=MONTH - REPORT rpType=MTR rpMeter=MtrElecPV rpFreq=MONTH - REPORT rpType=MTR rpMeter=MtrElec2 rpFreq=MONTH - REPORT rpType=MTR rpMeter=MtrNatGas rpFreq=MONTH + REPORT rpType=MTR rpMeter=MtrNatGas rpBtuSf=1000. rpFreq=MONTH + + REPORT rpType=MTR rpMeter=MtrElec rpBtuSf=1000. rpFreq=MONTH + REPORT rpType=MTR rpMeter=MtrElecPV rpBtuSf=1000. rpFreq=MONTH + REPORT rpType=MTR rpMeter=MtrElec2 rpBtuSf=1000. rpFreq=MONTH REPORT rpType=MTR rpMeter=MtrElecPeak rpBtuSf=1000. rpFreq=Month + REPORT rpType=MTR rpMeter=MtrElecOffPeak rpBtuSf=1000. rpFreq=Month + REPORT rpType=MTR rpMeter=MtrElecRecomb rpBtuSf=1000. rpFreq=Month + + REPORT rpType=MTR rpMeter=ALL rpBtuSf=1000. rpFreq=Month + REPORT rpType=MTR rpMeter=MtrElecPeak rpBtuSf=1000. rpFreq=Day rpDayBeg = jul 1 rpDayEnd = Jul 31 + REPORT rpType=MTR rpMeter=MtrElecOffPeak rpBtuSf=1000. rpFreq=Day rpDayBeg = jul 1 rpDayEnd = Jul 31 + REPORT rpType=MTR rpMeter=MtrElecPeak rpBtuSf=1000. rpFreq=Hour rpDayBeg = jul 3 rpDayEnd = Jul 3 + REPORT rpType=MTR rpMeter=MtrElecOffPeak rpBtuSf=1000. rpFreq=Hour rpDayBeg = jul 3 rpDayEnd = Jul 3 REPORT rpType=MTR rpMeter=MtrElec rpBtuSf=1000. rpFreq=Hour rpDayBeg = jul 3 rpDayEnd = Jul 3 // report columns: RSYS cooling subhour details