record RCData "Parameters of RC-elements"
extends Modelica.Electrical.Batteries.Icons.TransientCellRecord(CellType = "RC elements");
parameter SI.Resistance R "Resistance of RC-element";
parameter SI.Temperature T_ref = 293.15 "Reference temperature";
parameter SI.LinearTemperatureCoefficient alpha = 0 "Temperature coefficient of resistance at T_ref";
parameter SI.Capacitance C "Capacitance of RC-element (=T/R)";
annotation (
defaultComponentPrefixes = "parameter",
defaultComponentName = "rcData",
Documentation(info = "<html>\n<p>Parameters for RC-elements of battery models</p>\n<h4>Note</h4>\n<p>Capacitance C can be calculated from time constant T by C = T/R.</p>\n</html>"));
end RCData;