diff --git a/IBPSA/Electrical/Transmission/BaseClasses/BaseCable.mo b/IBPSA/Electrical/Transmission/BaseClasses/BaseCable.mo
index 97885e5459..0ad06526d3 100644
--- a/IBPSA/Electrical/Transmission/BaseClasses/BaseCable.mo
+++ b/IBPSA/Electrical/Transmission/BaseClasses/BaseCable.mo
@@ -17,10 +17,16 @@ record BaseCable "Record that contains the properties of a generic cable"
"Frequency considered in the definition of cables properties";
output Modelica.Units.SI.Resistance R "Resistance of the cable";
protected
- parameter Modelica.Units.SI.AngularVelocity omega=2*Modelica.Constants.pi*f;
+ Modelica.Units.SI.AngularVelocity omega=2*Modelica.Constants.pi*f;
annotation (Documentation(revisions="
-
+August 30, 2024, by Michael Wetter:
+Removed wrong parameter keyword on protected variable, which is needed for Dymola 2025x.
+This is for
+IBPSA, #1930.
+
+-
September 23, 2014, by Marco Bonvini:
Added function and documentation
@@ -36,10 +42,16 @@ Added function and documentation
"Frequency considered in the definition of cables properties";
output Modelica.Units.SI.Inductance L "Inductance of the cable";
protected
- parameter Modelica.Units.SI.AngularVelocity omega=2*Modelica.Constants.pi*f;
+ Modelica.Units.SI.AngularVelocity omega=2*Modelica.Constants.pi*f;
annotation (Documentation(revisions="
-
+August 30, 2024, by Michael Wetter:
+Removed wrong parameter keyword on protected variable, which is needed for Dymola 2025x.
+This is for
+IBPSA, #1930.
+
+-
September 23, 2014, by Marco Bonvini:
Added function and documentation
@@ -55,10 +67,16 @@ Added function and documentation
"Frequency considered in the definition of cables properties";
output Modelica.Units.SI.Capacitance C "Capacitance of the cable";
protected
- parameter Modelica.Units.SI.AngularVelocity omega=2*Modelica.Constants.pi*f;
+ Modelica.Units.SI.AngularVelocity omega=2*Modelica.Constants.pi*f;
annotation (Documentation(revisions="
-
+August 30, 2024, by Michael Wetter:
+Removed wrong parameter keyword on protected variable, which is needed for Dymola 2025x.
+This is for
+IBPSA, #1930.
+
+-
September 23, 2014, by Marco Bonvini:
Added function and documentation
@@ -69,6 +87,12 @@ Added function and documentation
annotation (Documentation(revisions="
-
+August 30, 2024, by Michael Wetter:
+Removed wrong parameter keyword on protected variable, which is needed for Dymola 2025x.
+This is for
+IBPSA, #1930.
+
+-
September 24, 2014, by Marco Bonvini:
Revised structure of the record, now the temperature constant M
is directly specified in the record.