-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add validation with dayly load profile
- Loading branch information
1 parent
24bf31b
commit faef6f7
Showing
15 changed files
with
838 additions
and
373 deletions.
There are no files selected for viewing
112 changes: 112 additions & 0 deletions
112
Buildings/Resources/Scripts/Dymola/Templates/Plants/Chillers/Validation/WaterCooled.mos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
simulateModel("Buildings.Templates.Plants.Chillers.Validation.WaterCooled", | ||
method="cvode", | ||
tolerance=1e-6, | ||
startTime=0.0, | ||
stopTime=86400.0, | ||
resultFile="WaterCooledChillerPlant"); | ||
createPlot( | ||
id=1, | ||
position={5, 5, 300, 500}, | ||
y={"pla.ctl.ctl.staSetCon.capReq.y", "pla.cap_nominal"}, | ||
autoscale=true, | ||
grid=true, | ||
timeUnit="h" | ||
); | ||
createPlot( | ||
id=1, | ||
subPlot=2, | ||
y={"pla.ctl.ctl.TOut", "pla.ctl.dat.TOutChiWatLck"}, | ||
autoscale=true, | ||
grid=true, | ||
timeUnit="h" | ||
); | ||
createPlot( | ||
id=2, | ||
position={310, 5, 300, 500}, | ||
y={"pla.ctl.reqPlaChiWat.y", "pla.ctl.ctl.plaEna.yPla"}, | ||
autoscale=true, | ||
grid=true, | ||
timeUnit="h" | ||
); | ||
createPlot( | ||
id=2, | ||
subPlot=2, | ||
y={"pla.ctl.ctl.idxStaHea.y", "pla.ctl.ctl.idxStaCoo.y"}, | ||
autoscale=true, | ||
grid=true, | ||
timeUnit="h" | ||
); | ||
createPlot( | ||
id=3, | ||
position={615, 5, 300, 500}, | ||
subPlot=1, | ||
y={"pla.bus.chi[1].y1", "pla.bus.chi[2].y1"}, | ||
autoscale=true, | ||
grid=true, | ||
timeUnit="h" | ||
); | ||
createPlot( | ||
id=4, | ||
position={920, 5, 300, 600}, | ||
subPlot=1, | ||
y={"pla.bus.pumChiWatPri.y1[1]", "pla.bus.pumChiWatPri.y1[2]"}, | ||
autoscale=true, | ||
grid=true, | ||
timeUnit="h" | ||
); | ||
createPlot( | ||
id=4, | ||
subPlot=2, | ||
y={"pla.bus.pumChiWatPri.y"}, | ||
autoscale=true, | ||
grid=true, | ||
timeUnit="h" | ||
); | ||
createPlot( | ||
id=5, | ||
position={1225, 5, 300, 600}, | ||
subPlot=1, | ||
y={"pla.ctl.reqResChiWat.y"}, | ||
autoscale=true, | ||
grid=true, | ||
timeUnit="h" | ||
); | ||
createPlot( | ||
id=5, | ||
subPlot=2, | ||
y={"pla.bus.dpChiWatRem[1]", "pla.ctl.ctl.chiWatPumCon.dpChiWatSet_remote[1]"}, | ||
autoscale=true, | ||
grid=true, | ||
timeUnit="h" | ||
); | ||
createPlot( | ||
id=5, | ||
subPlot=3, | ||
y={"pla.ctl.ctl.chiWatPumCon.dpChiWat_local", "pla.ctl.ctl.chiWatPumCon.dpChiWatPumSet_local"}, | ||
autoscale=true, | ||
grid=true, | ||
timeUnit="h" | ||
); | ||
createPlot( | ||
id=6, | ||
position={40, 40, 300, 600}, | ||
y={"pla.bus.VChiWatPri_flow", "datAll.pla.ctl.VChiWatPri_flow_nominal"}, | ||
autoscale=true, | ||
grid=true, | ||
timeUnit="h" | ||
); | ||
createPlot( | ||
id=6, | ||
subPlot=2, | ||
y={"pla.chi.chi[1].chi.PLR2", "pla.chi.chi[2].chi.PLR2"}, | ||
autoscale=true, | ||
grid=true, | ||
timeUnit="h" | ||
); | ||
createPlot( | ||
id=7, | ||
y={"pla.bus.TChiWatSupSet", "pla.bus.TChiWatPriSup", "pla.bus.TChiWatPlaRet"}, | ||
autoscale=true, | ||
grid=true, | ||
timeUnit="h" | ||
); |
Oops, something went wrong.