Skip to content

Commit

Permalink
Corrected comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mwetter committed Oct 28, 2021
1 parent 4c665d8 commit 7544e5c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Buildings/ThermalZones/Detailed/BaseClasses/ISATThread.mo
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
within Buildings.ThermalZones.Detailed.BaseClasses;
class ISATThread "class used to handle ISAT thread"
class ISATThread "Class used to handle ISAT thread"
extends ExternalObject;
// constructor
function constructor "allocate memeory for cosimulation variables"
output ISATThread ISATThre "the handler of ISAT thread";
external"C" ISATThre = isatcosim() annotation (Include="#include <isatcosim.c>",
function constructor "Allocate memeory for cosimulation variables"
output ISATThread ISATThre "Handler of ISAT thread";
external "C" ISATThre = isatcosim() annotation (Include="#include <isatcosim.c>",
IncludeDirectory="modelica://Buildings/Resources/C-Sources",
LibraryDirectory="modelica://Buildings/Resources/Library", Library="isat");
annotation (Documentation(info="<html>
Expand All @@ -21,15 +21,15 @@ First implementation.
end constructor;

// destructor
function destructor "release isat.dll or isat.so"
input ISATThread ISATThre "the handler of ISAT thread";
function destructor "Release isat library"
input ISATThread ISATThre "Handler of ISAT thread";
external"C" isatSendStopCommand(ISATThre) annotation (Include="#include <isatSendStopCommand.c>",
IncludeDirectory="modelica://Buildings/Resources/C-Sources",
LibraryDirectory="modelica://Buildings/Resources/Library", Library="isat");
annotation (Documentation(info="<html>
<p>
Destructor sends stop command to ISAT and releases memory for co-simulation variables at the end of the simulation
Destructor sends stop command to ISAT and releases memory for co-simulation variables at the end of the simulation.
</p>
</html>", revisions="<html>
<ul>
<li>
Expand Down

0 comments on commit 7544e5c

Please sign in to comment.