Skip to content

Commit

Permalink
Start docstring with upper case letter
Browse files Browse the repository at this point in the history
  • Loading branch information
christiankral committed Jan 17, 2022
1 parent a40052c commit 5ca9e77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Modelica/Electrical/Analog/Sources/DCPowerSupply.mo
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ model DCPowerSupply "Simple model of a DC power supply cv - cp - cc"
protected
parameter SI.Voltage vLim(fixed=false) "Voltage limit for cc";
parameter SI.Current iLim(fixed=false) "Current limit for cv";
parameter Boolean cp(fixed=false) "cp present?";
Boolean cv(start=true) "operation in cv, otherwise cc (or cp)";
Boolean cc(start=false) "operation in cc, otherwise cv (or cp)";
parameter Boolean cp(fixed=false) "Is cp present?";
Boolean cv(start=true) "Operation in cv, otherwise cc (or cp)";
Boolean cc(start=false) "Operation in cc, otherwise cv (or cp)";
initial algorithm
assert(Rcv < (V0/I0), "Rcv too high!");
assert(Gcc < (I0/V0), "Gcc too high!");
Expand Down

0 comments on commit 5ca9e77

Please sign in to comment.