FMU-FMU cosimulation of a heating tank & heater#

This demo illustrates a transient coupled simulation of convection heating of a fluid in a cylindrical tank. The heat source and heating tank are controlled via two FMUs that share temperature and heat flow data with one another.

  • One FMU is used to model the fluid in the tank.

  • Another FMU is used to model the controlled heat source at the bottom of the tank.

  • System Coupling coordinates the simultaneous execution of the solvers and the data transfers between them.

Problem description

The tank is modelled as a uniform-temperature fluid heated by a thermostat and experiencing convective cooling at its top. The temperature of the fluid is available as an output, modelling a sensor in the tank. The FMU has six parameters that can be set:

  • Height and base radius of the cylindrical tank [m]

  • Density [kg/m3] and specific heat [W/kgK] of the fluid (by default, set to the properties of water)

  • Convection heat transfer coefficient between the fluid and its surroundings [W/m2K]

  • Temperature of the tank’s surroundings [K].

The thermostat receives a temperature from the tank sensor and outputs a heat-rate. The FMU has three parameters that can be set:

  • Target temperature [K]

  • Maximum heat output [W]

  • Heat scale factor [W/K].

Two coupling interfaces :

  • sensor coupling interface

  • heat source coupling interface

Two data transfers :

  • temperature

  • heat flow

# Tags: FMU, transient

Import modules, download files, launch products#

Setting up this example consists of importing required modueles, downloading the input files, and launching the required products.

Perform required imports#

Import ansys-systemcoupling-core.

import ansys.systemcoupling.core as pysystemcoupling
from ansys.systemcoupling.core import examples

Download the input files#

This example requires the two FMU files to be downloaded.

examples.delete_downloads()
fmu_file_heater = examples.download_file(
    "thermostat.fmu", "pysystem-coupling/heating_tank_fmu/FMU"
)
fmu_file_tank = examples.download_file(
    "heatingTank.fmu", "pysystem-coupling/heating_tank_fmu_fmu/FMU"
)

Launch System Coupling#

Launch a remote System Coupling instance and return a client object (a Session object) that allows you to interact with System Coupling via an API exposed into the current Python environment.

syc = pysystemcoupling.launch(start_output=True)

Set up the coupled analysis#

System Coupling setup involves adding the two FMU participants, adding coupled interfaces and data transfers, and setting other coupled analysis properties.

Add participants by passing session handles to System Coupling.

heater_part_name = syc.setup.add_participant(input_file=fmu_file_heater)
tank_part_name = syc.setup.add_participant(input_file=fmu_file_tank)

Set FMU settings#

# Access the heater participant object
heater_participant = syc.setup.coupling_participant[heater_part_name]

# Change the "maximum heat output" settings
max_heat_output_param = heater_participant.fmu_parameter["Real_2"]
max_heat_output_param.real_value = 10.0
max_heat_output_param.display_name = "Maximum_Heat_Output"

# Change the "target temperature" settings
target_temperature_param = heater_participant.fmu_parameter["Real_3"]
target_temperature_param.real_value = 350
target_temperature_param.display_name = "Target_Temperature"

# Change the "heat scale factor" settings
heat_scale_factor_param = heater_participant.fmu_parameter["Real_4"]
heat_scale_factor_param.real_value = 2.0
heat_scale_factor_param.display_name = "Heat_Scale_Factor"

Add a coupling interface and data transfers#

# Add a coupling interface for tank <-> heater (sensor, heat source)
fmu_interface_name = syc.setup.add_interface(
    side_one_participant=tank_part_name, side_two_participant=heater_part_name
)

# Add the temperature data transfer
temperature_transfer_name = syc.setup.add_data_transfer(
    interface=fmu_interface_name,
    target_side="Two",
    source_variable="Real_0",
    target_variable="Real_0",
)

# Add the heat flow data transfer
heatflow_transfer_name = syc.setup.add_data_transfer(
    interface=fmu_interface_name,
    target_side="One",
    source_variable="Real_1",
    target_variable="Real_1",
)

Other controls

# Set time step size
syc.setup.solution_control.time_step_size = "1 [s]"

# Set the simulation end time
syc.setup.solution_control.end_time = "50 [s]"

# Set minimum and maximum iterations per time step
syc.setup.solution_control.minimum_iterations = 1
syc.setup.solution_control.maximum_iterations = 5

# Turn on chart output. This step is necessary
# to chart the data after solving.
syc.setup.output_control.generate_csv_chart_output = True

Solution#

syc.solution.solve()
+=============================================================================+
|                          Coupling Participants (2)                          |
+=============================================================================+
|    tutorialHeater                                                           |
+-----------------------------------------------------------------------------+
|       Internal Name :                                                 FMU-1 |
|       Participant Type :                                                FMU |
|       Participant Display Name :                             tutorialHeater |
|       Input Variables :                                            [Real_0] |
|       Output Variables :                                           [Real_1] |
|       Participant File Loaded :                              thermostat.fmu |
|       Logging On :                                                    False |
|       Can Serialize Fmu State :                                        True |
|       Can Get And Set Fmu State :                                      True |
|       Variables (2)                                                         |
|          Variable : Heat_Rate                                               |
|             Internal Name :                                          Real_1 |
|             Participant Display Name :                            Heat Rate |
|             Data Type :                                                Real |
|             Real Initial Value :                                   0.00e+00 |
|             Real Min :                                                 None |
|             Real Max :                                                 None |
|                                                                             |
|          Variable : Temperature                                             |
|             Internal Name :                                          Real_0 |
|             Participant Display Name :                          Temperature |
|             Data Type :                                                Real |
|             Real Initial Value :                                   0.00e+00 |
|             Real Min :                                                 None |
|             Real Max :                                                 None |
|       Update Control                                                        |
|          Option :                                         ProgramControlled |
|       FMU Parameter                                                         |
|          FMUParameter : Heat_Scale_Factor                                   |
|             Internal Name :                                          Real_4 |
|             Data Type :                                                Real |
|             Participant Display Name :                    Heat Scale Factor |
|             Real Value :                                           2.00e+00 |
|             Real Min :                                                 None |
|             Real Max :                                                 None |
|          FMUParameter : Maximum_Heat_Output                                 |
|             Internal Name :                                          Real_2 |
|             Data Type :                                                Real |
|             Participant Display Name :                  Maximum Heat Output |
|             Real Value :                                           1.00e+01 |
|             Real Min :                                                 None |
|             Real Max :                                                 None |
|          FMUParameter : Target_Temperature                                  |
|             Internal Name :                                          Real_3 |
|             Data Type :                                                Real |
|             Participant Display Name :                   Target Temperature |
|             Real Value :                                           3.50e+02 |
|             Real Min :                                                 None |
|             Real Max :                                                 None |
+-----------------------------------------------------------------------------+
|    tutorialHeatingTank                                                      |
+-----------------------------------------------------------------------------+
|       Internal Name :                                                 FMU-2 |
|       Participant Type :                                                FMU |
|       Participant Display Name :                        tutorialHeatingTank |
|       Input Variables :                                            [Real_1] |
|       Output Variables :                                           [Real_0] |
|       Participant File Loaded :                             heatingTank.fmu |
|       Logging On :                                                    False |
|       Can Serialize Fmu State :                                        True |
|       Can Get And Set Fmu State :                                      True |
|       Variables (2)                                                         |
|          Variable : Heat_Rate                                               |
|             Internal Name :                                          Real_1 |
|             Participant Display Name :                            Heat Rate |
|             Data Type :                                                Real |
|             Real Initial Value :                                   1.00e+03 |
|             Real Min :                                                 None |
|             Real Max :                                                 None |
|                                                                             |
|          Variable : Temperature                                             |
|             Internal Name :                                          Real_0 |
|             Participant Display Name :                          Temperature |
|             Data Type :                                                Real |
|             Real Initial Value :                                   2.73e+02 |
|             Real Min :                                                 None |
|             Real Max :                                                 None |
|       Update Control                                                        |
|          Option :                                         ProgramControlled |
|       FMU Parameter                                                         |
|          FMUParameter : Convection_Coefficient                              |
|             Internal Name :                                          Real_6 |
|             Data Type :                                                Real |
|             Participant Display Name :               Convection Coefficient |
|             Real Value :                                           1.00e+01 |
|             Real Min :                                                 None |
|             Real Max :                                                 None |
|          FMUParameter : Density                                             |
|             Internal Name :                                          Real_4 |
|             Data Type :                                                Real |
|             Participant Display Name :                              Density |
|             Real Value :                                           1.00e+03 |
|             Real Min :                                                 None |
|             Real Max :                                                 None |
|          FMUParameter : Specific_Heat                                       |
|             Internal Name :                                          Real_5 |
|             Data Type :                                                Real |
|             Participant Display Name :                        Specific Heat |
|             Real Value :                                           4.18e+03 |
|             Real Min :                                                 None |
|             Real Max :                                                 None |
|          FMUParameter : Surroundings_Temp                                   |
|             Internal Name :                                          Real_7 |
|             Data Type :                                                Real |
|             Participant Display Name :                    Surroundings Temp |
|             Real Value :                                           2.73e+02 |
|             Real Min :                                                 None |
|             Real Max :                                                 None |
|          FMUParameter : Tank_Height                                         |
|             Internal Name :                                          Real_2 |
|             Data Type :                                                Real |
|             Participant Display Name :                          Tank Height |
|             Real Value :                                           1.40e-01 |
|             Real Min :                                                 None |
|             Real Max :                                                 None |
|          FMUParameter : Tank_Radius                                         |
|             Internal Name :                                          Real_3 |
|             Data Type :                                                Real |
|             Participant Display Name :                          Tank Radius |
|             Real Value :                                           5.00e-02 |
|             Real Min :                                                 None |
|             Real Max :                                                 None |
+=============================================================================+
|                              Analysis Control                               |
+=============================================================================+
|    Analysis Type :                                                Transient |
|    Optimize If One Way :                                               True |
|    Allow Simultaneous Update :                                        False |
+=============================================================================+
|                           Coupling Interfaces (1)                           |
+=============================================================================+
|    Interface-1                                                              |
+-----------------------------------------------------------------------------+
|       Internal Name :                                           Interface-1 |
|       Side                                                                  |
|          Side: One                                                          |
|             Coupling Participant :                                    FMU-2 |
|          Side: Two                                                          |
|             Coupling Participant :                                    FMU-1 |
|       Data Transfers (2)                                                    |
|          DataTransfer : Heat_Rate                                           |
|             Internal Name :                                          Real_1 |
|             Suppress :                                                False |
|             Target Side :                                               One |
|             Option :                                          UsingVariable |
|             Source Variable :                                        Real_1 |
|             Target Variable :                                        Real_1 |
|             Ramping Option :                                           None |
|             Relaxation Factor :                                    1.00e+00 |
|             Convergence Target :                                   1.00e-02 |
|          DataTransfer : Temperature                                         |
|             Internal Name :                                          Real_0 |
|             Suppress :                                                False |
|             Target Side :                                               Two |
|             Option :                                          UsingVariable |
|             Source Variable :                                        Real_0 |
|             Target Variable :                                        Real_0 |
|             Ramping Option :                                           None |
|             Relaxation Factor :                                    1.00e+00 |
|             Convergence Target :                                   1.00e-02 |
+=============================================================================+
|                              Solution Control                               |
+=============================================================================+
|    Duration Option :                                                EndTime |
|    End Time :                                                        50 [s] |
|    Time Step Size :                                                   1 [s] |
|    Minimum Iterations :                                                   1 |
|    Maximum Iterations :                                                   5 |
+=============================================================================+
|                               Output Control                                |
+=============================================================================+
|    Generate CSV Chart Output :                                         True |
|    Write Initial Snapshot :                                            True |
+=============================================================================+

+-----------------------------------------------------------------------------+
| Warnings were found during data model validation.                           |
+-----------------------------------------------------------------------------+
| Warning: FMU(s) detected in the Datamodel. FMUs are not currently           |
|     restartable. A restart can still be performed but the FMU state will be |
|     re-initialized based on the Datamodel.                                  |
+-----------------------------------------------------------------------------+

+=============================================================================+
|                            Execution Information                            |
+=============================================================================+
|                                                                             |
| System Coupling                                                             |
|   Command Line Arguments:                                                   |
|     -m cosimgui --grpcport=0.0.0.0:60581                                    |
|   Working Directory:                                                        |
|     /working                                                                |
|                                                                             |
| tutorialHeater                                                              |
|   thermostat.fmu                                                            |
|                                                                             |
| tutorialHeatingTank                                                         |
|   heatingTank.fmu                                                           |
|                                                                             |
+=============================================================================+
Awaiting connections from coupling participants... done.

+=============================================================================+
|                              Build Information                              |
+-----------------------------------------------------------------------------+
| System Coupling                                                             |
|   2024 R2: Build ID: 48974af Build Date: 2024-05-13T13:51                   |
| tutorialHeater                                                              |
|   Author: ANSYS Inc                                                         |
|   Version: 1.0                                                              |
|   Copyright: ANSYS Inc                                                      |
|   License: None                                                             |
|   Generation Time: 2019-02-08T09:52:33z                                     |
|   Description: Thermostat FMU for Tutorial                                  |
| tutorialHeatingTank                                                         |
|   Author: ANSYS Inc                                                         |
|   Version: 1.0                                                              |
|   Copyright: ANSYS Inc                                                      |
|   License: None                                                             |
|   Description: Heating Tank FMU for Tutorial                                |
+=============================================================================+

===============================================================================
+=============================================================================+
|                                                                             |
|                           Analysis Initialization                           |
|                                                                             |
+=============================================================================+
===============================================================================


+-----------------------------------------------------------------------------+
|                            Transfer Diagnostics                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |                                       |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |                                       |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+

===============================================================================
+=============================================================================+
|                                                                             |
|                              Coupled Solution                               |
|                                                                             |
+=============================================================================+
===============================================================================


+=============================================================================+
| COUPLING STEP = 1                         SIMULATION TIME = 1.00000E+00 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |         Not yet converged             |
|       RMS Change                    |     1.00E+00          1.00E+00        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |         Not yet converged             |
|       RMS Change                    |     1.00E+00          1.00E+00        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 2                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 2                         SIMULATION TIME = 2.00000E+00 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 3                         SIMULATION TIME = 3.00000E+00 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 4                         SIMULATION TIME = 4.00000E+00 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 5                         SIMULATION TIME = 5.00000E+00 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 6                         SIMULATION TIME = 6.00000E+00 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 7                         SIMULATION TIME = 7.00000E+00 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 8                         SIMULATION TIME = 8.00000E+00 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 9                         SIMULATION TIME = 9.00000E+00 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 10                        SIMULATION TIME = 1.00000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 11                        SIMULATION TIME = 1.10000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 12                        SIMULATION TIME = 1.20000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 13                        SIMULATION TIME = 1.30000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 14                        SIMULATION TIME = 1.40000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 15                        SIMULATION TIME = 1.50000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 16                        SIMULATION TIME = 1.60000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 17                        SIMULATION TIME = 1.70000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 18                        SIMULATION TIME = 1.80000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 19                        SIMULATION TIME = 1.90000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 20                        SIMULATION TIME = 2.00000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 21                        SIMULATION TIME = 2.10000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 22                        SIMULATION TIME = 2.20000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 23                        SIMULATION TIME = 2.30000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 24                        SIMULATION TIME = 2.40000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.10E-06          6.10E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 25                        SIMULATION TIME = 2.50000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 26                        SIMULATION TIME = 2.60000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 27                        SIMULATION TIME = 2.70000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 28                        SIMULATION TIME = 2.80000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 29                        SIMULATION TIME = 2.90000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 30                        SIMULATION TIME = 3.00000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 31                        SIMULATION TIME = 3.10000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 32                        SIMULATION TIME = 3.20000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 33                        SIMULATION TIME = 3.30000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 34                        SIMULATION TIME = 3.40000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 35                        SIMULATION TIME = 3.50000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 36                        SIMULATION TIME = 3.60000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 37                        SIMULATION TIME = 3.70000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 38                        SIMULATION TIME = 3.80000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 39                        SIMULATION TIME = 3.90000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 40                        SIMULATION TIME = 4.00000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 41                        SIMULATION TIME = 4.10000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 42                        SIMULATION TIME = 4.20000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 43                        SIMULATION TIME = 4.30000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 44                        SIMULATION TIME = 4.40000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 45                        SIMULATION TIME = 4.50000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 46                        SIMULATION TIME = 4.60000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 47                        SIMULATION TIME = 4.70000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 48                        SIMULATION TIME = 4.80000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 49                        SIMULATION TIME = 4.90000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

+=============================================================================+
| COUPLING STEP = 50                        SIMULATION TIME = 5.00000E+01 [s] |
+=============================================================================+

+=============================================================================+
|                             COUPLING ITERATIONS                             |
+-----------------------------------------------------------------------------+
|                                     |      Source            Target         |
+-----------------------------------------------------------------------------+
|                           COUPLING ITERATION = 1                            |
+-----------------------------------------------------------------------------+
| tutorialHeater                      |                                       |
|   Interface: Interface-1            |                                       |
|     Temperature                     |             Converged                 |
|       RMS Change                    |     6.09E-06          6.09E-06        |
|       Value                         |     2.95E+02          2.95E+02        |
+-----------------------------------------------------------------------------+
| tutorialHeatingTank                 |                                       |
|   Interface: Interface-1            |                                       |
|     Heat_Rate                       |             Converged                 |
|       RMS Change                    |     1.00E-14          1.00E-14        |
|       Value                         |     1.00E+01          1.00E+01        |
+-----------------------------------------------------------------------------+
| Participant solution status         |                                       |
|   tutorialHeater                    |     Convergence not evaluated         |
|   tutorialHeatingTank               |     Convergence not evaluated         |
+=============================================================================+

===============================================================================
+=============================================================================+
|                                                                             |
|                                  Shut Down                                  |
|                                                                             |
+=============================================================================+
===============================================================================

+=============================================================================+
|                          Available Restart Points                           |
+=============================================================================+
| Restart Point                        | File Name                            |
+-----------------------------------------------------------------------------+
| Coupling Step 50                     | Restart_step50.h5                    |
+=============================================================================+

+=============================================================================+
|                             Timing Summary [s]                              |
+=============================================================================+
| Total Time :                                                    3.30652E+00 |
| Coupling Participant Time                                                   |
|    tutorialHeater :                                             5.87297E-01 |
|    tutorialHeatingTank :                                        4.88816E-01 |

Post-processing#

Plot graphs of temperature and heat rate over time using System Coupling’s charting command.

syc.solution.show_plot(interface_name=fmu_interface_name, show_convergence=False)
Interface-1 - Heat_Rate (Weighted Average), Interface-1 - Temperature (Weighted Average)
|    Total :                                                      1.07611E+00 |
| Coupling Engine Time                                                        |
|    Solution Control :                                           2.12395E+00 |
|    Mesh Import :                                                0.00000E+00 |
|    Mapping Setup :                                              1.31130E-05 |
|    Mapping :                                                    8.00610E-04 |
|    Numerics :                                                   3.53551E-03 |
|    Misc. :                                                      1.02115E-01 |
|    Total :                                                      2.23041E+00 |
+=============================================================================+

+=============================================================================+
|                 System coupling run completed successfully.                 |
+=============================================================================+


<ansys.systemcoupling.core.charts.plotter.Plotter object at 0x7f1057b341c0>

Exit#

syc.exit()

Total running time of the script: (0 minutes 7.142 seconds)

Gallery generated by Sphinx-Gallery