Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/EnergyPlus/HeatBalanceSurfaceManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3271,7 +3271,7 @@ void InitSolarHeatGains(EnergyPlusData &state)
Real64 ACosTlt = std::abs(Surface(SurfNum).CosTilt); // Absolute value of cosine of surface tilt angle

int slatIdxLo = surfShade.blind.slatAngIdxLo;
int slatIdxHi = surfShade.blind.slatAngIdxLo;
int slatIdxHi = surfShade.blind.slatAngIdxHi;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, why no diffs now?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gah, it still thinks this is coming in from a forked repo, so it didn't run regressions. https://github.com/NatLabRockies/EnergyPlus/actions/runs/21322463790/job/61374316914?pr=11405

I've got a couple more quick touch-ups on #11404, and then we can get that merged. That will fix this.

Real64 interpFac = surfShade.blind.slatAngInterpFac;
auto const &dfAbsSlatLo = constructionSh.layerSlatBlindDfAbs(Lay)[slatIdxLo];
auto const &dfAbsSlatHi = constructionSh.layerSlatBlindDfAbs(Lay)[slatIdxHi];
Expand Down
Loading