Skip to content

Commit b7548a3

Browse files
author
Michael Tiller
committed
Merge pull request #201 from tbeu/fix-cooling
Fix lower case of "Newton's law of cooling" everywhere
2 parents 01673c5 + 09f58d9 commit b7548a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ModelicaByExample/BasicEquations/CoolingExample/NewtonCoolingWithTypes.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ model NewtonCoolingWithTypes "Cooling example with physical types"
2020
initial equation
2121
T = T0 "Specify initial value for T";
2222
equation
23-
m*c_p*der(T) = h*A*(T_inf-T) "Newton's law of Cooling";
23+
m*c_p*der(T) = h*A*(T_inf-T) "Newton's law of cooling";
2424
end NewtonCoolingWithTypes;

text/source/components/components/block_comps.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ can be expressed by the single equation:
302302

303303
.. code-block:: modelica
304304
305-
m*c_p*der(T) = h*A*(T_inf-T) "Newton's law of Cooling";
305+
m*c_p*der(T) = h*A*(T_inf-T) "Newton's law of cooling";
306306
307307
Such an equation can be typed in very quickly. In contrast, the
308308
component based versions would require the user to drag, drop and

0 commit comments

Comments
 (0)