Skip to content

Commit

Permalink
Merge pull request #201 from tbeu/fix-cooling
Browse files Browse the repository at this point in the history
Fix lower case of "Newton's law of cooling" everywhere
  • Loading branch information
Michael Tiller committed Aug 15, 2014
2 parents 01673c5 + 09f58d9 commit b7548a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -20,5 +20,5 @@ model NewtonCoolingWithTypes "Cooling example with physical types"
initial equation
T = T0 "Specify initial value for T";
equation
m*c_p*der(T) = h*A*(T_inf-T) "Newton's law of Cooling";
m*c_p*der(T) = h*A*(T_inf-T) "Newton's law of cooling";
end NewtonCoolingWithTypes;
2 changes: 1 addition & 1 deletion text/source/components/components/block_comps.rst
Expand Up @@ -302,7 +302,7 @@ can be expressed by the single equation:

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

0 comments on commit b7548a3

Please sign in to comment.