From d99fb750ed528ba6ff0e6d6355768c731aeaf0e7 Mon Sep 17 00:00:00 2001 From: mlauster Date: Tue, 24 May 2016 12:47:17 +0200 Subject: [PATCH] fixes bug out of bugfix in HeaterCoolerPI.mo and PartialHeaterCoolerPI.mo #250 --- AixLib/Utilities/Sources/HeaterCooler/HeaterCoolerPI.mo | 2 +- AixLib/Utilities/Sources/HeaterCooler/PartialHeaterCoolerPI.mo | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AixLib/Utilities/Sources/HeaterCooler/HeaterCoolerPI.mo b/AixLib/Utilities/Sources/HeaterCooler/HeaterCoolerPI.mo index 40582912a1..15b35b5fc3 100644 --- a/AixLib/Utilities/Sources/HeaterCooler/HeaterCoolerPI.mo +++ b/AixLib/Utilities/Sources/HeaterCooler/HeaterCoolerPI.mo @@ -1,6 +1,6 @@ within AixLib.Utilities.Sources.HeaterCooler; model HeaterCoolerPI "heater and cooler with variable setpoints" - extends AixLib.Utilities.Sources.HeaterCooler.partialHeaterCoolerPI; + extends AixLib.Utilities.Sources.HeaterCooler.PartialHeaterCoolerPI; parameter Boolean Heater_on = true "Activates the heater" annotation(Dialog(tab = "Heater",enable=not recOrSep)); parameter Boolean Cooler_on = true "Activates the cooler" annotation(Dialog(tab = "Cooler",enable=not recOrSep)); parameter Boolean staOrDyn = true "Static or dynamic activation of heater" annotation(choices(choice = true "Static", choice = false "Dynamic", diff --git a/AixLib/Utilities/Sources/HeaterCooler/PartialHeaterCoolerPI.mo b/AixLib/Utilities/Sources/HeaterCooler/PartialHeaterCoolerPI.mo index bd07c182f4..20d416be49 100644 --- a/AixLib/Utilities/Sources/HeaterCooler/PartialHeaterCoolerPI.mo +++ b/AixLib/Utilities/Sources/HeaterCooler/PartialHeaterCoolerPI.mo @@ -1,6 +1,6 @@ within AixLib.Utilities.Sources.HeaterCooler; partial model PartialHeaterCoolerPI - extends AixLib.Utilities.Sources.HeaterCooler.partialHeaterCooler; + extends AixLib.Utilities.Sources.HeaterCooler.PartialHeaterCooler; parameter Real h_heater = 0 "Upper limit controller output of the heater" annotation(Dialog(tab = "Heater", group = "Controller",enable=not recOrSep)); parameter Real l_heater = 0 "Lower limit controller output of the heater" annotation(Dialog(tab = "Heater", group = "Controller",enable=not recOrSep)); parameter Real KR_heater = 1000 "Gain of the heating controller" annotation(Dialog(tab = "Heater", group = "Controller",enable=not recOrSep));