Note
Click here to download the full example code
Oscillating plate#
This example is a version of the Oscillating Plate case that is often used as a tutorial for System Coupling. This two-way, fluid-structural interaction (FSI) case is based on co-simulation of a transient oscillating plate with 2D data transfers.
Ansys Mechanical APDL (MAPDL) is used to perform a transient structural analysis.
Ansys Fluent is used to perform a transient fluid-flow analysis.
System Coupling coordinates the simultaneous execution of the solvers for these Ansys products and the data transfers between their coupled surface regions.
Problem description
An oscillating plate resides within a fluid-filled cavity. A thin plate is anchored to the bottom of a closed cavity filled with fluid (air):
There is no friction between the plate and the side of the cavity. An initial pressure of 100 Pa is applied to one side of the thin plate for 0.5 seconds to distort it. Once this pressure is released, the plate oscillates back and forth to regain its equilibrium, and the surrounding air damps this oscillation. The plate and surrounding air are simulated for a few oscillations to allow an examination of the motion of the plate as it is damped.
Set up example#
Setting up this example consists of performing imports, downloading input files, preparing the directory structure, and launching System Coupling.
Perform required imports#
Import the ansys-systemcoupling-core
package and other required packages.
import os
from pprint import pprint
import ansys.systemcoupling.core as pysystemcoupling
from ansys.systemcoupling.core import examples
Download input files#
Clear the downloads target directory (which is to be used as the working directory). Download the SCP files for Fluent and MAPDL, which provide solver-specifc information to System Coupling and the respective solver input files for each solver run.
examples.delete_downloads()
mapdl_scp_file = examples.download_file(
"mapdl.scp", "pysystem-coupling/oscillating_plate"
)
fluent_scp_file = examples.download_file(
"fluent.scp", "pysystem-coupling/oscillating_plate"
)
mapdl_dat_file = examples.download_file(
"mapdl.dat", "pysystem-coupling/oscillating_plate/MAPDL"
)
fluent_cas_file = examples.download_file(
"plate.cas.gz", "pysystem-coupling/oscillating_plate/Fluent"
)
Prepare expected directory structure#
The target download directory is used as the working directory. The SCP files are defined such that there is expected to be a Fluent subdirectory in which Fluent runs and an MAPDL subdirectory in which MAPDL runs. These directories should contain their respective case and input files.
working_dir = os.path.dirname(mapdl_scp_file)
fluent_working_dir = os.path.join(working_dir, "Fluent")
os.mkdir(fluent_working_dir)
mapdl_working_dir = os.path.join(working_dir, "MAPDL")
os.mkdir(mapdl_working_dir)
os.rename(fluent_cas_file, os.path.join(fluent_working_dir, "plate.cas.gz"))
os.rename(mapdl_dat_file, os.path.join(mapdl_working_dir, "mapdl.dat"))
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(working_dir=working_dir)
Create analysis#
Creating the analysis consists of accessing the setup
API,
loading participants, creating and verifying both interfaces and
data transfers, querying for setup errors, and modifying settings.
Access the setup
API#
setup = syc.setup
Load participants#
Use add_participant
to create coupling_participant
objects
representing the Fluent and MAPDL participants, based on the data
in the scp files that were previously exported by the respective
products.
mapdl_part_name = setup.add_participant(input_file="mapdl.scp")
fluent_part_name = setup.add_participant(input_file="fluent.scp")
Verify coupling_participant
objects exist:
setup.coupling_participant.keys()
dict_keys(['MAPDL-1', 'FLUENT-2'])
Create interfaces and data transfers#
Create interfaces and data transfers by specifying participant regions. This consists of calling the appropriate commands to create an interface and both force and displacement data transfers.
interface_name = setup.add_interface(
side_one_participant = mapdl_part_name, side_one_regions = ['FSIN_1'],
side_two_participant = fluent_part_name, side_two_regions = ['wall_deforming'])
force_transfer_name = setup.add_data_transfer(
interface=interface_name,
target_side="One",
side_one_variable="FORC",
side_two_variable="force",
)
disp_transfer_name = setup.add_data_transfer(
interface=interface_name,
target_side="Two",
side_one_variable="INCD",
side_two_variable="displacement",
)
Verify creation of interfaces and data transfers#
Confirm the coupling interface exists.
setup.coupling_interface.keys()
dict_keys(['Interface-1'])
Examine the coupling interface state. Note that
data_transfer
child objects exist for "displacement"
and "FORC"
.
setup.coupling_interface[interface_name].print_state()
display_name : Interface-1
side :
Two :
coupling_participant : FLUENT-2
region_list :
0 : wall_deforming
reference_frame : GlobalReferenceFrame
instancing : None
One :
coupling_participant : MAPDL-1
region_list :
0 : FSIN_1
reference_frame : GlobalReferenceFrame
instancing : None
data_transfer :
displacement :
display_name : displacement
suppress : False
target_side : Two
option : UsingVariable
source_variable : INCD
target_variable : displacement
ramping_option : None
relaxation_factor : 1.0
convergence_target : 0.01
mapping_type : ProfilePreserving
unmapped_value_option : Nearest Value
FORC :
display_name : Force
suppress : False
target_side : One
option : UsingVariable
source_variable : force
target_variable : FORC
ramping_option : None
relaxation_factor : 1.0
convergence_target : 0.01
mapping_type : Conservative
mapping_control :
stop_if_poor_intersection : True
poor_intersection_threshold : 0.5
face_alignment : ProgramControlled
absolute_gap_tolerance : 0.0 [m]
relative_gap_tolerance : 1.0
Query for setup errors#
A coupled analysis setup cannot be solved if errors
exist. Errors are indicated by messages with
the level
field set to Error
. Here, there are
two missing settings that must be corrected.
There is also an Information
level message that
advises that, once the current setup is solved, it is
not possible to restart it from any point except the
last step.
pprint(setup.get_status_messages())
[{'level': 'Information',
'message': "The 'OutputControl' option is LastStep. To enable restarts from "
'intermediate steps, please use a different option.',
'path': 'output_control'},
{'level': 'Error',
'message': 'TimeStepSize not defined for Transient analysis',
'path': 'solution_control'},
{'level': 'Error',
'message': 'EndTime not defined for Transient analysis',
'path': 'solution_control'}]
Note
In the current release of PySystemCoupling, the get_status_messages
class provides messages generated by System Coupling using its native
terminology. This means that any identifiers for settings that are
mentioned in messages are in System Coupling’s usual camel case format.
In most cases, it should be obvious how to translate to the
snake case format for the corresponding PySystemCoupling setting.
For example, the EndTime
setting in System Coupling’s
OutputControl
object corresponds to the output_control.end_time
setting in PySystemCoupling.
Modify settings#
View contents of the solution_control
object. Notice that
the time_step_size
and end_time
settings are unset,
consistent with what was shown in the status messages.
Values shown in the print_state
output as <None>
have Python values of None
.
setup.solution_control.print_state()
duration_option : EndTime
end_time : <None>
time_step_size : <None>
minimum_iterations : 1
maximum_iterations : 5
Change the time_step_size
setting.
setup.solution_control.time_step_size = "0.1 [s]"
Verify the time_step_size
setting.
setup.solution_control.time_step_size
'0.1 [s]'
Change the end_time
setting.
setup.solution_control.end_time = "1.0 [s]"
View the output_control
object.
setup.output_control.print_state()
option : LastStep
generate_csv_chart_output : False
write_initial_snapshot : True
results :
option : ProgramControlled
include_instances : ProgramControlled
type :
option : EnsightGold
View the valid values for the option
setting.
setup.output_control.get_property_options("option")
['LastStep', 'EveryStep', 'StepInterval']
Set the option
setting.
setup.output_control.option = "StepInterval"
Change the output_frequency
frequency setting.
setup.output_control.output_frequency = 2
View the output_control
object again:
setup.output_control.print_state()
option : StepInterval
generate_csv_chart_output : False
write_initial_snapshot : True
output_frequency : 2
results :
option : ProgramControlled
include_instances : ProgramControlled
type :
option : EnsightGold
Review setup#
Verify that there are no longer any setup errors.
pprint(setup.get_status_messages())
[]
Use the get_setup_summary
class to return a string showing a summary of
the coupled analysis setup. This summary is also shown in the
transcript output when the solve is started, but it can
be useful to review this before starting the solve.
print(setup.get_setup_summary())
===============================================================================
+=============================================================================+
| |
| Summary of Coupling Setup |
| |
+=============================================================================+
===============================================================================
+=============================================================================+
| Coupling Participants (2) |
+=============================================================================+
| |
| Participant: Fluid Flow (Fluent) |
| Type : FLUENT |
| UpdateControls: |
| Option : ProgramControlled |
| Region: part-fluid |
| Topology : Volume |
| Region: wall_bottom |
| Topology : Surface |
| Output Variables : force |
| Region: wall_deforming |
| Topology : Surface |
| Input Variables : displacement |
| Output Variables : force |
| Region: wall_inlet |
| Topology : Surface |
| Output Variables : force |
| Region: wall_outlet |
| Topology : Surface |
| Output Variables : force |
| Region: wall_top |
| Topology : Surface |
| Output Variables : force |
| Variable: displacement |
| Quantity Type : Incremental Displacement |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : False |
| Data Type : Real |
| Variable: force |
| Quantity Type : Force |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : True |
| Data Type : Real |
| |
+-----------------------------------------------------------------------------+
| |
| Participant: MAPDL Transient |
| Type : MAPDL |
| UpdateControls: |
| Option : ProgramControlled |
| Region: FSIN_1_Fluid Solid Interface |
| Topology : Surface |
| Input Variables : Force |
| Output Variables : Incremental_Displacement |
| Variable: Force |
| Quantity Type : Force |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : True |
| Data Type : Real |
| Variable: Incremental_Displacement |
| Quantity Type : Incremental Displacement |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : False |
| Data Type : Real |
| |
+=============================================================================+
| Analysis Control |
+=============================================================================+
| |
| Analysis Type : Transient |
| Global Stabilization : None |
| OptimizeIfOneWay : True |
| AllowSimultaneousUpdate : False |
| PartitioningAlgorithm : SharedAllocateMachines |
| |
+=============================================================================+
| Coupling Interfaces (1) |
+=============================================================================+
| |
| Interface: Interface-1 |
| Side: One |
| Coupling Participant : MAPDL Transient |
| Region List : FSIN_1_Fluid Solid Interface |
| Reference Frame : GlobalReferenceFrame |
| Side: Two |
| Coupling Participant : Fluid Flow (Fluent) |
| Region List : wall_deforming |
| Reference Frame : GlobalReferenceFrame |
| Data Transfer: Force |
| Suppress : False |
| Target Side : One |
| Source Variable : force |
| Target Variable : Force |
| Mapping Type : Surface Conservative |
| Convergence Target : 1.00E-02 |
| Ramping Option : None |
| Relaxation Factor : 1.00E+00 |
| Data Transfer: displacement |
| Suppress : False |
| Target Side : Two |
| Source Variable : Incremental_Displacement |
| Target Variable : displacement |
| Unmapped Value Option : Nearest Value |
| Mapping Type : Surface Profile Preserving |
| Convergence Target : 1.00E-02 |
| Ramping Option : None |
| Relaxation Factor : 1.00E+00 |
| Mapping Control: |
| Absolute Gap Tolerance : 0.0 [m] |
| Face Alignment : ProgramControlled |
| Poor Intersection Threshold : 5.00e-01 |
| Relative Gap Tolerance : 1.00e+00 |
| Stop If Poor Intersection : True |
| |
+=============================================================================+
| Solution Control |
+=============================================================================+
| |
| Duration Option : EndTime |
| End Time : 1.0 [s] |
| Maximum Iterations : 5 |
| Minimum Iterations : 1 |
| Time Step Size : 0.1 [s] |
| |
+=============================================================================+
| Output Control |
+=============================================================================+
| |
| Output Control Option : StepInterval |
| Frequency : 2 |
| Results |
| IncludeInstances : ProgramControlled |
| Option : ProgramControlled |
| Type |
| Option : EnsightGold |
| Write Initial Snapshot : True |
| |
+=============================================================================+
Run solution#
The System Coupling server’s stdout
and stderr
output is not shown
in PySystemCoupling by default. To see it, turn output streaming on.
syc.start_output()
Access the solve
command via the solution
API.
solution = syc.solution
solution.solve()
===============================================================================
+=============================================================================+
| |
| Summary of Coupling Setup |
| |
+=============================================================================+
===============================================================================
+=============================================================================+
| Coupling Participants (2) |
+=============================================================================+
| |
| Participant: Fluid Flow (Fluent) |
| Type : FLUENT |
| UpdateControls: |
| Option : ProgramControlled |
| Region: wall_deforming |
| Topology : Surface |
| Input Variables : displacement |
| Output Variables : force |
| Variable: displacement |
| Quantity Type : Incremental Displacement |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : False |
| Data Type : Real |
| Variable: force |
| Quantity Type : Force |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : True |
| Data Type : Real |
| |
+-----------------------------------------------------------------------------+
| |
| Participant: MAPDL Transient |
| Type : MAPDL |
| UpdateControls: |
| Option : ProgramControlled |
| Region: FSIN_1_Fluid Solid Interface |
| Topology : Surface |
| Input Variables : Force |
| Output Variables : Incremental_Displacement |
| Variable: Force |
| Quantity Type : Force |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : True |
| Data Type : Real |
| Variable: Incremental_Displacement |
| Quantity Type : Incremental Displacement |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : False |
| Data Type : Real |
| |
+=============================================================================+
| Analysis Control |
+=============================================================================+
| |
| Analysis Type : Transient |
| Global Stabilization : None |
| OptimizeIfOneWay : True |
| AllowSimultaneousUpdate : False |
| PartitioningAlgorithm : SharedAllocateMachines |
| |
+=============================================================================+
| Coupling Interfaces (1) |
+=============================================================================+
| |
| Interface: Interface-1 |
| Side: One |
| Coupling Participant : MAPDL Transient |
| Region List : FSIN_1_Fluid Solid Interface |
| Reference Frame : GlobalReferenceFrame |
| Side: Two |
| Coupling Participant : Fluid Flow (Fluent) |
| Region List : wall_deforming |
| Reference Frame : GlobalReferenceFrame |
| Data Transfer: Force |
| Suppress : False |
| Target Side : One |
| Source Variable : force |
| Target Variable : Force |
| Mapping Type : Surface Conservative |
| Convergence Target : 1.00E-02 |
| Ramping Option : None |
| Relaxation Factor : 1.00E+00 |
| Data Transfer: displacement |
| Suppress : False |
| Target Side : Two |
| Source Variable : Incremental_Displacement |
| Target Variable : displacement |
| Unmapped Value Option : Nearest Value |
| Mapping Type : Surface Profile Preserving |
| Convergence Target : 1.00E-02 |
| Ramping Option : None |
| Relaxation Factor : 1.00E+00 |
| Mapping Control: |
| Absolute Gap Tolerance : 0.0 [m] |
| Face Alignment : ProgramControlled |
| Poor Intersection Threshold : 5.00e-01 |
| Relative Gap Tolerance : 1.00e+00 |
| Stop If Poor Intersection : True |
| |
+=============================================================================+
| Solution Control |
+=============================================================================+
| |
| Duration Option : EndTime |
| End Time : 1.0 [s] |
| Maximum Iterations : 5 |
| Minimum Iterations : 1 |
| Time Step Size : 0.1 [s] |
| |
+=============================================================================+
| Output Control |
+=============================================================================+
| |
| Output Control Option : StepInterval |
| Frequency : 2 |
| Results |
| IncludeInstances : ProgramControlled |
| Option : ProgramControlled |
| Type |
| Option : EnsightGold |
| Write Initial Snapshot : True |
| |
+=============================================================================+
+=============================================================================+
| Execution Information |
+=============================================================================+
| |
| System Coupling |
| Command Line Arguments: |
| -m cosimgui --grpcport 127.0.0.1:55541 |
| Working Directory: |
| C:\Users\idboyd\AppData\Local\ansys_systemcoupling_core\ansys_systemcou |
| pling_core\examples |
| |
| Fluid Flow (Fluent) |
| Execution Command: |
| "C:\ANSYSDev\ANSYSI~1\v231\fluent\ntbin\win64\fluent.exe" 3ddp -g -scpo |
| rt=55574 -schost=MILIDBOYD1.mshome.net -scname="FLUENT-2" -i FLUENT-2.j |
| ou |
| Working Directory: |
| C:\Users\idboyd\AppData\Local\ansys_systemcoupling_core\ansys_systemcou |
| pling_core\examples\Fluent |
| |
| MAPDL Transient |
| Execution Command: |
| "C:\ANSYSDev\ANSYSI~1\v231\ansys\bin\winx64\ANSYS231.exe" -b nolist -s |
| noread -scport 55574 -schost MILIDBOYD1.mshome.net -scname "MAPDL-1" -i |
| "mapdl.dat" -o MAPDL-1.out |
| Working Directory: |
| C:\Users\idboyd\AppData\Local\ansys_systemcoupling_core\ansys_systemcou |
| pling_core\examples\MAPDL |
| |
+=============================================================================+
Awaiting connections from coupling participants... done.
+=============================================================================+
| Build Information |
+-----------------------------------------------------------------------------+
| System Coupling |
| 2023 R1: Build ID: 295a442 Build Date: 2022-11-07T10:34 |
| Fluid Flow (Fluent) |
| ANSYS Fluent 23.1.0, Build Time:Nov 28 2022 09:52:02 EST, Build Id:10208, |
| OS Version:win64 |
| MAPDL Transient |
| Mechanical APDL Release 2023 R1 Build 23.1 UP20221128 |
| DISTRIBUTED WINDOWS x64 Version |
+=============================================================================+
===============================================================================
+=============================================================================+
| |
| Analysis Initialization |
| |
+=============================================================================+
===============================================================================
+-----------------------------------------------------------------------------+
| MESH STATISTICS |
+-----------------------------------------------------------------------------+
| Participant: FLUENT-2 |
| Number of face regions 1 |
| Number of faces 11 |
| Quadrilateral 11 |
| Area (m2) 8.240e-01 |
| Bounding Box (m) |
| Minimum [ 1.000e+01 0.000e+00 0.000e+00] |
| Maximum [ 1.006e+01 1.000e+00 4.000e-01] |
| |
| Participant: MAPDL-1 |
| Number of face regions 1 |
| Number of faces 84 |
| Quadrilateral8 84 |
| Area (m2) 8.240e-01 |
| Bounding Box (m) |
| Minimum [ 1.000e+01 0.000e+00 0.000e+00] |
| Maximum [ 1.006e+01 1.000e+00 4.000e-01] |
| |
| Total |
| Number of cells 0 |
| Number of faces 95 |
| Number of nodes 327 |
+-----------------------------------------------------------------------------+
+-----------------------------------------------------------------------------+
| MAPPING SUMMARY |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| Interface-1 | |
| Force | |
| Mapped Area [%] | 100 100 |
| Mapped Elements [%] | 100 100 |
| Mapped Nodes [%] | 100 100 |
| displacement | |
| Mapped Area [%] | 100 100 |
| Mapped Elements [%] | 100 100 |
| Mapped Nodes [%] | 100 100 |
+-----------------------------------------------------------------------------+
+-----------------------------------------------------------------------------+
| Transfer Diagnostics |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | |
| Weighted Average x | 0.00E+00 0.00E+00 |
| Weighted Average y | 0.00E+00 0.00E+00 |
| Weighted Average z | 0.00E+00 0.00E+00 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | |
| Sum x | 0.00E+00 0.00E+00 |
| Sum y | 0.00E+00 0.00E+00 |
| Sum z | 0.00E+00 0.00E+00 |
+-----------------------------------------------------------------------------+
===============================================================================
+=============================================================================+
| |
| Coupled Solution |
| |
+=============================================================================+
===============================================================================
+=============================================================================+
| COUPLING STEP = 1 SIMULATION TIME = 1.00000E-01 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 1.00E+00 1.00E+00 |
| Sum x | 0.00E+00 0.00E+00 |
| Sum y | 0.00E+00 0.00E+00 |
| Sum z | 0.00E+00 0.00E+00 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 1.00E+00 1.00E+00 |
| Weighted Average x | -1.50E-03 -1.51E-03 |
| Weighted Average y | 5.05E-07 4.42E-07 |
| Weighted Average z | -1.38E-17 -1.39E-17 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 1.05E+00 7.39E-01 |
| Sum x | 1.34E-01 1.34E-01 |
| Sum y | 9.55E-04 9.55E-04 |
| Sum z | -1.31E-15 -1.31E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 3.20E-03 3.24E-03 |
| Weighted Average x | -1.49E-03 -1.51E-03 |
| Weighted Average y | 5.27E-07 4.64E-07 |
| Weighted Average z | -2.11E-17 -2.07E-17 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 1.87E-02 1.29E-02 |
| Sum x | 1.36E-01 1.36E-01 |
| Sum y | 1.01E-03 1.01E-03 |
| Sum z | -1.29E-15 -1.29E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 3.49E-05 3.49E-05 |
| Weighted Average x | -1.49E-03 -1.51E-03 |
| Weighted Average y | 5.27E-07 4.65E-07 |
| Weighted Average z | -1.36E-17 -1.36E-17 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 4 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 1.35E-03 9.24E-04 |
| Sum x | 1.36E-01 1.36E-01 |
| Sum y | 1.01E-03 1.01E-03 |
| Sum z | -1.28E-15 -1.28E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 1.05E-06 1.05E-06 |
| Weighted Average x | -1.49E-03 -1.51E-03 |
| Weighted Average y | 5.27E-07 4.65E-07 |
| Weighted Average z | -1.17E-17 -1.25E-17 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
+=============================================================================+
| COUPLING STEP = 2 SIMULATION TIME = 2.00000E-01 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 7.06E-05 4.84E-05 |
| Sum x | 1.36E-01 1.36E-01 |
| Sum y | 1.01E-03 1.01E-03 |
| Sum z | -1.24E-15 -1.24E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 8.75E-01 8.84E-01 |
| Weighted Average x | -5.03E-03 -5.07E-03 |
| Weighted Average y | -4.11E-05 -4.17E-05 |
| Weighted Average z | 6.05E-17 6.12E-17 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 6.05E-01 4.42E-01 |
| Sum x | 3.43E-01 3.43E-01 |
| Sum y | 5.99E-03 5.99E-03 |
| Sum z | 3.92E-15 3.92E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 8.29E-03 8.55E-03 |
| Weighted Average x | -4.99E-03 -5.03E-03 |
| Weighted Average y | -4.10E-05 -4.16E-05 |
| Weighted Average z | 1.20E-16 1.23E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 9.48E-03 6.52E-03 |
| Sum x | 3.43E-01 3.43E-01 |
| Sum y | 6.12E-03 6.12E-03 |
| Sum z | 3.81E-15 3.81E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 2.84E-04 2.95E-04 |
| Weighted Average x | -4.99E-03 -5.03E-03 |
| Weighted Average y | -4.10E-05 -4.15E-05 |
| Weighted Average z | 7.96E-17 8.13E-17 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
+=============================================================================+
| COUPLING STEP = 3 SIMULATION TIME = 3.00000E-01 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 8.02E-04 5.68E-04 |
| Sum x | 3.43E-01 3.43E-01 |
| Sum y | 6.13E-03 6.13E-03 |
| Sum z | 4.11E-15 4.11E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 7.97E-01 8.14E-01 |
| Weighted Average x | -8.65E-03 -8.69E-03 |
| Weighted Average y | -1.98E-04 -1.99E-04 |
| Weighted Average z | 1.05E-16 1.15E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 1.93E-01 1.51E-01 |
| Sum x | 4.07E-01 4.07E-01 |
| Sum y | 1.64E-02 1.64E-02 |
| Sum z | 1.80E-14 1.80E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 3.20E-03 3.37E-03 |
| Weighted Average x | -8.63E-03 -8.66E-03 |
| Weighted Average y | -1.98E-04 -1.99E-04 |
| Weighted Average z | -1.91E-17 -1.19E-17 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 8.84E-03 6.71E-03 |
| Sum x | 4.03E-01 4.03E-01 |
| Sum y | 1.64E-02 1.64E-02 |
| Sum z | 1.73E-14 1.73E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 1.20E-04 1.35E-04 |
| Weighted Average x | -8.63E-03 -8.66E-03 |
| Weighted Average y | -1.98E-04 -1.99E-04 |
| Weighted Average z | -7.79E-17 -7.83E-17 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
+=============================================================================+
| COUPLING STEP = 4 SIMULATION TIME = 4.00000E-01 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 4.67E-04 3.49E-04 |
| Sum x | 4.03E-01 4.03E-01 |
| Sum y | 1.63E-02 1.63E-02 |
| Sum z | 1.74E-14 1.74E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 7.41E-01 7.68E-01 |
| Weighted Average x | -1.16E-02 -1.16E-02 |
| Weighted Average y | -5.40E-04 -5.39E-04 |
| Weighted Average z | 9.77E-17 1.36E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 1.36E-01 9.40E-02 |
| Sum x | 3.93E-01 3.93E-01 |
| Sum y | 3.19E-02 3.19E-02 |
| Sum z | 2.54E-14 2.54E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 1.24E-03 1.36E-03 |
| Weighted Average x | -1.16E-02 -1.16E-02 |
| Weighted Average y | -5.40E-04 -5.40E-04 |
| Weighted Average z | 2.48E-17 2.81E-17 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 5.99E-03 4.26E-03 |
| Sum x | 3.91E-01 3.91E-01 |
| Sum y | 3.18E-02 3.18E-02 |
| Sum z | 2.47E-14 2.47E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 2.28E-05 2.50E-05 |
| Weighted Average x | -1.16E-02 -1.16E-02 |
| Weighted Average y | -5.40E-04 -5.40E-04 |
| Weighted Average z | 4.66E-16 4.96E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
+=============================================================================+
| COUPLING STEP = 5 SIMULATION TIME = 5.00000E-01 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 3.56E-04 2.49E-04 |
| Sum x | 3.91E-01 3.91E-01 |
| Sum y | 3.18E-02 3.18E-02 |
| Sum z | 2.45E-14 2.45E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 7.24E-01 7.57E-01 |
| Weighted Average x | -1.42E-02 -1.42E-02 |
| Weighted Average y | -1.18E-03 -1.18E-03 |
| Weighted Average z | 1.39E-15 1.38E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 9.32E-02 6.61E-02 |
| Sum x | 4.19E-01 4.19E-01 |
| Sum y | 5.75E-02 5.75E-02 |
| Sum z | 2.81E-14 2.81E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 2.18E-03 2.46E-03 |
| Weighted Average x | -1.42E-02 -1.42E-02 |
| Weighted Average y | -1.18E-03 -1.18E-03 |
| Weighted Average z | 1.34E-15 1.34E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 2.67E-03 1.72E-03 |
| Sum x | 4.19E-01 4.19E-01 |
| Sum y | 5.76E-02 5.76E-02 |
| Sum z | 2.63E-14 2.63E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 6.64E-05 7.49E-05 |
| Weighted Average x | -1.42E-02 -1.42E-02 |
| Weighted Average y | -1.18E-03 -1.18E-03 |
| Weighted Average z | 1.32E-15 1.32E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
+=============================================================================+
| COUPLING STEP = 6 SIMULATION TIME = 6.00000E-01 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 1.61E-04 1.06E-04 |
| Sum x | 4.19E-01 4.19E-01 |
| Sum y | 5.76E-02 5.76E-02 |
| Sum z | 2.58E-14 2.58E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 7.31E-01 7.61E-01 |
| Weighted Average x | -1.53E-02 -1.53E-02 |
| Weighted Average y | -1.98E-03 -1.96E-03 |
| Weighted Average z | -1.72E-16 -1.52E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 1.53E-01 1.02E-01 |
| Sum x | 3.52E-01 3.52E-01 |
| Sum y | 7.37E-02 7.37E-02 |
| Sum z | 6.63E-15 6.63E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 6.36E-03 6.49E-03 |
| Weighted Average x | -1.52E-02 -1.51E-02 |
| Weighted Average y | -1.96E-03 -1.95E-03 |
| Weighted Average z | -1.82E-16 -1.64E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 3.03E-02 2.00E-02 |
| Sum x | 3.39E-01 3.39E-01 |
| Sum y | 7.15E-02 7.15E-02 |
| Sum z | 5.70E-15 5.70E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 3.46E-05 3.40E-05 |
| Weighted Average x | -1.52E-02 -1.51E-02 |
| Weighted Average y | -1.96E-03 -1.95E-03 |
| Weighted Average z | -1.63E-16 -1.33E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 4 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 6.92E-04 4.43E-04 |
| Sum x | 3.39E-01 3.39E-01 |
| Sum y | 7.15E-02 7.15E-02 |
| Sum z | 6.44E-15 6.44E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 8.92E-07 1.02E-06 |
| Weighted Average x | -1.52E-02 -1.51E-02 |
| Weighted Average y | -1.96E-03 -1.95E-03 |
| Weighted Average z | -1.87E-16 -1.68E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
+=============================================================================+
| COUPLING STEP = 7 SIMULATION TIME = 7.00000E-01 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 2.23E-05 1.42E-05 |
| Sum x | 3.39E-01 3.39E-01 |
| Sum y | 7.15E-02 7.15E-02 |
| Sum z | 5.99E-15 5.99E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 7.33E-01 7.62E-01 |
| Weighted Average x | -1.38E-02 -1.38E-02 |
| Weighted Average y | -2.39E-03 -2.38E-03 |
| Weighted Average z | -2.40E-15 -2.43E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 7.29E-01 4.28E-01 |
| Sum x | 1.57E-01 1.57E-01 |
| Sum y | 5.38E-02 5.38E-02 |
| Sum z | -1.30E-14 -1.30E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 1.69E-03 1.81E-03 |
| Weighted Average x | -1.38E-02 -1.38E-02 |
| Weighted Average y | -2.39E-03 -2.37E-03 |
| Weighted Average z | -2.36E-15 -2.40E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 1.24E-02 7.06E-03 |
| Sum x | 1.55E-01 1.55E-01 |
| Sum y | 5.33E-02 5.33E-02 |
| Sum z | -1.45E-14 -1.45E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 5.78E-05 5.89E-05 |
| Weighted Average x | -1.38E-02 -1.38E-02 |
| Weighted Average y | -2.39E-03 -2.37E-03 |
| Weighted Average z | -2.39E-15 -2.41E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
+=============================================================================+
| COUPLING STEP = 8 SIMULATION TIME = 8.00000E-01 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 1.18E-03 6.71E-04 |
| Sum x | 1.55E-01 1.55E-01 |
| Sum y | 5.32E-02 5.32E-02 |
| Sum z | -1.42E-14 -1.42E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 7.41E-01 7.68E-01 |
| Weighted Average x | -1.14E-02 -1.14E-02 |
| Weighted Average y | -2.23E-03 -2.22E-03 |
| Weighted Average z | -2.33E-15 -2.41E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 1.45E+00 7.24E-01 |
| Sum x | 2.97E-02 2.97E-02 |
| Sum y | 2.66E-02 2.66E-02 |
| Sum z | -3.61E-14 -3.61E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 8.73E-04 9.81E-04 |
| Weighted Average x | -1.14E-02 -1.14E-02 |
| Weighted Average y | -2.23E-03 -2.22E-03 |
| Weighted Average z | -2.24E-15 -2.31E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 3.74E-02 1.81E-02 |
| Sum x | 2.72E-02 2.72E-02 |
| Sum y | 2.58E-02 2.58E-02 |
| Sum z | -3.49E-14 -3.49E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 4.98E-05 5.57E-05 |
| Weighted Average x | -1.14E-02 -1.14E-02 |
| Weighted Average y | -2.23E-03 -2.22E-03 |
| Weighted Average z | -2.12E-15 -2.19E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 4 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 2.78E-03 1.32E-03 |
| Sum x | 2.72E-02 2.72E-02 |
| Sum y | 2.58E-02 2.58E-02 |
| Sum z | -3.49E-14 -3.49E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 4.03E-06 4.44E-06 |
| Weighted Average x | -1.14E-02 -1.14E-02 |
| Weighted Average y | -2.23E-03 -2.22E-03 |
| Weighted Average z | -2.24E-15 -2.32E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
+=============================================================================+
| COUPLING STEP = 9 SIMULATION TIME = 9.00000E-01 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 1.04E-04 5.00E-05 |
| Sum x | 2.72E-02 2.72E-02 |
| Sum y | 2.58E-02 2.58E-02 |
| Sum z | -3.48E-14 -3.48E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 7.80E-01 7.99E-01 |
| Weighted Average x | -8.49E-03 -8.51E-03 |
| Weighted Average y | -1.73E-03 -1.73E-03 |
| Weighted Average z | -7.44E-16 -7.28E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 1.11E+00 8.12E-01 |
| Sum x | -8.40E-02 -8.40E-02 |
| Sum y | -4.61E-03 -4.61E-03 |
| Sum z | -4.96E-14 -4.96E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 2.21E-03 2.36E-03 |
| Weighted Average x | -8.47E-03 -8.50E-03 |
| Weighted Average y | -1.73E-03 -1.73E-03 |
| Weighted Average z | -6.78E-16 -6.77E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 3.77E-02 2.62E-02 |
| Sum x | -8.74E-02 -8.74E-02 |
| Sum y | -5.49E-03 -5.49E-03 |
| Sum z | -4.84E-14 -4.84E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 7.77E-05 8.51E-05 |
| Weighted Average x | -8.47E-03 -8.50E-03 |
| Weighted Average y | -1.73E-03 -1.73E-03 |
| Weighted Average z | -7.11E-16 -7.09E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 4 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 2.23E-03 1.55E-03 |
| Sum x | -8.75E-02 -8.75E-02 |
| Sum y | -5.51E-03 -5.51E-03 |
| Sum z | -4.83E-14 -4.83E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 2.98E-06 3.42E-06 |
| Weighted Average x | -8.47E-03 -8.50E-03 |
| Weighted Average y | -1.73E-03 -1.73E-03 |
| Weighted Average z | -5.02E-16 -4.90E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
+=============================================================================+
| COUPLING STEP = 10 SIMULATION TIME = 1.00000E+00 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 7.34E-05 5.05E-05 |
| Sum x | -8.75E-02 -8.75E-02 |
| Sum y | -5.51E-03 -5.51E-03 |
| Sum z | -4.83E-14 -4.83E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 8.10E-01 8.26E-01 |
| Weighted Average x | -4.95E-03 -4.98E-03 |
| Weighted Average y | -1.08E-03 -1.08E-03 |
| Weighted Average z | 1.56E-15 1.61E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 6.20E-01 4.48E-01 |
| Sum x | -2.17E-01 -2.17E-01 |
| Sum y | -4.08E-02 -4.08E-02 |
| Sum z | -4.96E-14 -4.96E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 3.88E-03 4.36E-03 |
| Weighted Average x | -4.95E-03 -4.97E-03 |
| Weighted Average y | -1.07E-03 -1.08E-03 |
| Weighted Average z | 1.50E-15 1.56E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 1.65E-02 1.15E-02 |
| Sum x | -2.20E-01 -2.20E-01 |
| Sum y | -4.17E-02 -4.17E-02 |
| Sum z | -5.03E-14 -5.03E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 1.63E-04 1.87E-04 |
| Weighted Average x | -4.95E-03 -4.97E-03 |
| Weighted Average y | -1.07E-03 -1.08E-03 |
| Weighted Average z | 1.58E-15 1.64E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 4 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 5.70E-04 3.95E-04 |
| Sum x | -2.21E-01 -2.21E-01 |
| Sum y | -4.17E-02 -4.17E-02 |
| Sum z | -5.03E-14 -5.03E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 9.44E-06 1.09E-05 |
| Weighted Average x | -4.95E-03 -4.97E-03 |
| Weighted Average y | -1.07E-03 -1.08E-03 |
| Weighted Average z | 1.56E-15 1.62E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
===============================================================================
+=============================================================================+
| |
| Shut Down |
| |
+=============================================================================+
===============================================================================
+=============================================================================+
| Available Restart Points |
+=============================================================================+
| Restart Point | File Name |
+-----------------------------------------------------------------------------+
| Coupling Step 2 | Restart_step2.h5 |
| Coupling Step 4 | Restart_step4.h5 |
| Coupling Step 6 | Restart_step6.h5 |
| Coupling Step 8 | Restart_step8.h5 |
| Coupling Step 10 | Restart_step10.h5 |
+=============================================================================+
+=============================================================================+
| Timing Summary [s] |
+=============================================================================+
| Total Time : 7.01800E+01 |
| Coupling Participant Time |
| Fluid Flow (Fluent) : 5.00954E+01 |
| MAPDL Transient : 4.58970E+00 |
| Total : 5.46851E+01 |
| Coupling Engine Time |
| Solution Control : 6.56125E+00 |
| Mesh Import : 4.23348E-02 |
| Mapping Setup : 3.36880E-03 |
| Mapping : 6.36730E-03 |
| Numerics : 2.00889E-02 |
| Misc. : 8.86153E+00 |
| Total : 1.54949E+01 |
+=============================================================================+
+=============================================================================+
Extend analysis end time#
Extend the analysis end time for a restarted run.
Access the case
attribute for file handling and persistence.
Use this attribute to completely clear the current case and reload
from the case saved during the solve.
case = syc.case
case.clear_state()
case.open()
| System coupling run completed successfully. |
+=============================================================================+
Reading settings
Opened analysis at the end of coupling step 10.
Extend analysis#
View the solution_control
object, change the end-time
setting,
and verify the setting change.
This code extends the analysis to 1.5 seconds.
setup.solution_control.print_state()
setup.solution_control.end_time = "1.5 [s]"
setup.solution_control.print_state()
duration_option : EndTime
end_time : 1.0 [s]
time_step_size : 0.1 [s]
minimum_iterations : 1
maximum_iterations : 5
duration_option : EndTime
end_time : 1.5 [s]
time_step_size : 0.1 [s]
minimum_iterations : 1
maximum_iterations : 5
Change additional settings#
Examine "Force"
data transfer.
force_transfer = setup.coupling_interface[interface_name].data_transfer[
force_transfer_name
]
force_transfer.print_state()
display_name : Force
suppress : False
target_side : One
option : UsingVariable
source_variable : force
target_variable : FORC
ramping_option : None
relaxation_factor : 1.0
convergence_target : 0.01
mapping_type : Conservative
Change a setting in the "Force"
data transfer and increase the
minimum iterations value in the solutions_control
object from its default
value of 1 to 2.
force_transfer.convergence_target = 0.001
setup.solution_control.minimum_iterations = 2
Review setup#
To review the setup again, use the get_setup_summary
class to return a string
showing a summary.
print(setup.get_setup_summary())
===============================================================================
+=============================================================================+
| |
| Summary of Coupling Setup |
| |
+=============================================================================+
===============================================================================
+=============================================================================+
| Coupling Participants (2) |
+=============================================================================+
| |
| Participant: Fluid Flow (Fluent) |
| Type : FLUENT |
| UpdateControls: |
| Option : ProgramControlled |
| Region: part-fluid |
| Topology : Volume |
| Region: wall_bottom |
| Topology : Surface |
| Output Variables : force |
| Region: wall_deforming |
| Topology : Surface |
| Input Variables : displacement |
| Output Variables : force |
| Region: wall_inlet |
| Topology : Surface |
| Output Variables : force |
| Region: wall_outlet |
| Topology : Surface |
| Output Variables : force |
| Region: wall_top |
| Topology : Surface |
| Output Variables : force |
| Variable: displacement |
| Quantity Type : Incremental Displacement |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : False |
| Data Type : Real |
| Variable: force |
| Quantity Type : Force |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : True |
| Data Type : Real |
| |
+-----------------------------------------------------------------------------+
| |
| Participant: MAPDL Transient |
| Type : MAPDL |
| UpdateControls: |
| Option : ProgramControlled |
| Region: FSIN_1_Fluid Solid Interface |
| Topology : Surface |
| Input Variables : Force |
| Output Variables : Incremental_Displacement |
| Variable: Force |
| Quantity Type : Force |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : True |
| Data Type : Real |
| Variable: Incremental_Displacement |
| Quantity Type : Incremental Displacement |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : False |
| Data Type : Real |
| |
+=============================================================================+
| Analysis Control |
+=============================================================================+
| |
| Analysis Type : Transient |
| Global Stabilization : None |
| OptimizeIfOneWay : True |
| AllowSimultaneousUpdate : False |
| PartitioningAlgorithm : SharedAllocateMachines |
| |
+=============================================================================+
| Coupling Interfaces (1) |
+=============================================================================+
| |
| Interface: Interface-1 |
| Side: One |
| Coupling Participant : MAPDL Transient |
| Region List : FSIN_1_Fluid Solid Interface |
| Reference Frame : GlobalReferenceFrame |
| Side: Two |
| Coupling Participant : Fluid Flow (Fluent) |
| Region List : wall_deforming |
| Reference Frame : GlobalReferenceFrame |
| Data Transfer: Force |
| Suppress : False |
| Target Side : One |
| Source Variable : force |
| Target Variable : Force |
| Mapping Type : Surface Conservative |
| Convergence Target : 1.00E-03 |
| Ramping Option : None |
| Relaxation Factor : 1.00E+00 |
| Data Transfer: displacement |
| Suppress : False |
| Target Side : Two |
| Source Variable : Incremental_Displacement |
| Target Variable : displacement |
| Unmapped Value Option : Nearest Value |
| Mapping Type : Surface Profile Preserving |
| Convergence Target : 1.00E-02 |
| Ramping Option : None |
| Relaxation Factor : 1.00E+00 |
| Mapping Control: |
| Absolute Gap Tolerance : 0.0 [m] |
| Face Alignment : ProgramControlled |
| Poor Intersection Threshold : 5.00e-01 |
| Relative Gap Tolerance : 1.00e+00 |
| Stop If Poor Intersection : True |
| |
+=============================================================================+
| Solution Control |
+=============================================================================+
| |
| Duration Option : EndTime |
| End Time : 1.5 [s] |
| Maximum Iterations : 5 |
| Minimum Iterations : 2 |
| Time Step Size : 0.1 [s] |
| |
+=============================================================================+
| Output Control |
+=============================================================================+
| |
| Output Control Option : StepInterval |
| Frequency : 2 |
| Results |
| IncludeInstances : ProgramControlled |
| Option : ProgramControlled |
| Type |
| Option : EnsightGold |
| Write Initial Snapshot : True |
| |
+=============================================================================+
Restart solution#
To restart the solution, access the solve
command via the solution
API.
solution.solve()
===============================================================================
+=============================================================================+
| |
| Summary of Coupling Setup |
| |
+=============================================================================+
===============================================================================
+=============================================================================+
| Coupling Participants (2) |
+=============================================================================+
| |
| Participant: Fluid Flow (Fluent) |
| Type : FLUENT |
| UpdateControls: |
| Option : ProgramControlled |
| Region: wall_deforming |
| Topology : Surface |
| Input Variables : displacement |
| Output Variables : force |
| Variable: displacement |
| Quantity Type : Incremental Displacement |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : False |
| Data Type : Real |
| Variable: force |
| Quantity Type : Force |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : True |
| Data Type : Real |
| |
+-----------------------------------------------------------------------------+
| |
| Participant: MAPDL Transient |
| Type : MAPDL |
| UpdateControls: |
| Option : ProgramControlled |
| Region: FSIN_1_Fluid Solid Interface |
| Topology : Surface |
| Input Variables : Force |
| Output Variables : Incremental_Displacement |
| Variable: Force |
| Quantity Type : Force |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : True |
| Data Type : Real |
| Variable: Incremental_Displacement |
| Quantity Type : Incremental Displacement |
| Location : Node |
| Tensor Type : Vector |
| Is Extensive : False |
| Data Type : Real |
| |
+=============================================================================+
| Analysis Control |
+=============================================================================+
| |
| Analysis Type : Transient |
| Global Stabilization : None |
| OptimizeIfOneWay : True |
| AllowSimultaneousUpdate : False |
| PartitioningAlgorithm : SharedAllocateMachines |
| |
+=============================================================================+
| Coupling Interfaces (1) |
+=============================================================================+
| |
| Interface: Interface-1 |
| Side: One |
| Coupling Participant : MAPDL Transient |
| Region List : FSIN_1_Fluid Solid Interface |
| Reference Frame : GlobalReferenceFrame |
| Side: Two |
| Coupling Participant : Fluid Flow (Fluent) |
| Region List : wall_deforming |
| Reference Frame : GlobalReferenceFrame |
| Data Transfer: Force |
| Suppress : False |
| Target Side : One |
| Source Variable : force |
| Target Variable : Force |
| Mapping Type : Surface Conservative |
| Convergence Target : 1.00E-03 |
| Ramping Option : None |
| Relaxation Factor : 1.00E+00 |
| Data Transfer: displacement |
| Suppress : False |
| Target Side : Two |
| Source Variable : Incremental_Displacement |
| Target Variable : displacement |
| Unmapped Value Option : Nearest Value |
| Mapping Type : Surface Profile Preserving |
| Convergence Target : 1.00E-02 |
| Ramping Option : None |
| Relaxation Factor : 1.00E+00 |
| Mapping Control: |
| Absolute Gap Tolerance : 0.0 [m] |
| Face Alignment : ProgramControlled |
| Poor Intersection Threshold : 5.00e-01 |
| Relative Gap Tolerance : 1.00e+00 |
| Stop If Poor Intersection : True |
| |
+=============================================================================+
| Solution Control |
+=============================================================================+
| |
| Duration Option : EndTime |
| End Time : 1.5 [s] |
| Maximum Iterations : 5 |
| Minimum Iterations : 2 |
| Time Step Size : 0.1 [s] |
| |
+=============================================================================+
| Output Control |
+=============================================================================+
| |
| Output Control Option : StepInterval |
| Frequency : 2 |
| Results |
| IncludeInstances : ProgramControlled |
| Option : ProgramControlled |
| Type |
| Option : EnsightGold |
| Write Initial Snapshot : True |
| |
+=============================================================================+
+=============================================================================+
| Execution Information |
+=============================================================================+
| |
| System Coupling |
| Command Line Arguments: |
| -m cosimgui --grpcport 127.0.0.1:55541 |
| Working Directory: |
| C:\Users\idboyd\AppData\Local\ansys_systemcoupling_core\ansys_systemcou |
| pling_core\examples |
| |
| Fluid Flow (Fluent) |
| Execution Command: |
| "C:\ANSYSDev\ANSYSI~1\v231\fluent\ntbin\win64\fluent.exe" 3ddp -g -scpo |
| rt=55766 -schost=MILIDBOYD1.mshome.net -scname="FLUENT-2" -i FLUENT-2.j |
| ou |
| Working Directory: |
| C:\Users\idboyd\AppData\Local\ansys_systemcoupling_core\ansys_systemcou |
| pling_core\examples\Fluent |
| |
| MAPDL Transient |
| Execution Command: |
| "C:\ANSYSDev\ANSYSI~1\v231\ansys\bin\winx64\ANSYS231.exe" -b nolist -s |
| noread -scport 55766 -schost MILIDBOYD1.mshome.net -scname "MAPDL-1" -i |
| "MAPDL-1.dat" -o MAPDL-1.out |
| Working Directory: |
| C:\Users\idboyd\AppData\Local\ansys_systemcoupling_core\ansys_systemcou |
| pling_core\examples\MAPDL |
| |
+=============================================================================+
Awaiting connections from coupling participants... done.
+=============================================================================+
| Build Information |
+-----------------------------------------------------------------------------+
| System Coupling |
| 2023 R1: Build ID: 295a442 Build Date: 2022-11-07T10:34 |
| Fluid Flow (Fluent) |
| ANSYS Fluent 23.1.0, Build Time:Nov 28 2022 09:52:02 EST, Build Id:10208, |
| OS Version:win64 |
| MAPDL Transient |
| Mechanical APDL Release 2023 R1 Build 23.1 UP20221128 |
| DISTRIBUTED WINDOWS x64 Version |
+=============================================================================+
===============================================================================
+=============================================================================+
| |
| Analysis Initialization |
| |
+=============================================================================+
===============================================================================
+-----------------------------------------------------------------------------+
| MESH STATISTICS |
+-----------------------------------------------------------------------------+
| Participant: FLUENT-2 |
| Number of face regions 1 |
| Number of faces 11 |
| Quadrilateral 11 |
| Area (m2) 8.241e-01 |
| Bounding Box (m) |
| Minimum [ 9.771e+00 0.000e+00 0.000e+00] |
| Maximum [ 1.006e+01 9.778e-01 4.000e-01] |
| |
| Participant: MAPDL-1 |
| Number of face regions 1 |
| Number of faces 84 |
| Quadrilateral8 84 |
| Area (m2) 8.240e-01 |
| Bounding Box (m) |
| Minimum [ 9.770e+00 0.000e+00 -9.064e-04] |
| Maximum [ 1.006e+01 9.778e-01 4.009e-01] |
| |
| Total |
| Number of cells 0 |
| Number of faces 95 |
| Number of nodes 327 |
+-----------------------------------------------------------------------------+
+-----------------------------------------------------------------------------+
| MAPPING SUMMARY |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| Interface-1 | |
| Force | |
| Mapped Area [%] | 100 100 |
| Mapped Elements [%] | 100 100 |
| Mapped Nodes [%] | 100 100 |
| displacement | |
| Mapped Area [%] | 100 100 |
| Mapped Elements [%] | 100 100 |
| Mapped Nodes [%] | 100 100 |
+-----------------------------------------------------------------------------+
===============================================================================
+=============================================================================+
| |
| Coupled Solution |
| |
+=============================================================================+
===============================================================================
+=============================================================================+
| COUPLING STEP = 11 SIMULATION TIME = 1.10000E+00 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 1.00E+00 1.00E+00 |
| Sum x | -2.21E-01 -2.20E-01 |
| Sum y | -4.17E-02 -4.16E-02 |
| Sum z | -5.05E-14 -5.06E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 1.00E+00 1.00E+00 |
| Weighted Average x | -1.05E-03 -1.04E-03 |
| Weighted Average y | -2.54E-04 -2.51E-04 |
| Weighted Average z | 2.44E-15 2.45E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 3.89E-01 2.79E-01 |
| Sum x | -3.40E-01 -3.39E-01 |
| Sum y | -7.67E-02 -7.66E-02 |
| Sum z | -7.42E-14 -7.44E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 4.30E-03 4.72E-03 |
| Weighted Average x | -1.05E-03 -1.05E-03 |
| Weighted Average y | -2.55E-04 -2.52E-04 |
| Weighted Average z | 2.36E-15 2.36E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 7.11E-03 4.96E-03 |
| Sum x | -3.42E-01 -3.41E-01 |
| Sum y | -7.72E-02 -7.71E-02 |
| Sum z | -7.76E-14 -7.78E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 3.03E-04 3.46E-04 |
| Weighted Average x | -1.05E-03 -1.05E-03 |
| Weighted Average y | -2.55E-04 -2.52E-04 |
| Weighted Average z | 2.42E-15 2.42E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 4 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 5.03E-04 3.43E-04 |
| Sum x | -3.42E-01 -3.41E-01 |
| Sum y | -7.73E-02 -7.72E-02 |
| Sum z | -7.80E-14 -7.82E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 2.35E-05 2.64E-05 |
| Weighted Average x | -1.05E-03 -1.05E-03 |
| Weighted Average y | -2.55E-04 -2.52E-04 |
| Weighted Average z | 2.38E-15 2.39E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
+=============================================================================+
| COUPLING STEP = 12 SIMULATION TIME = 1.20000E+00 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 2.60E-05 1.82E-05 |
| Sum x | -3.42E-01 -3.42E-01 |
| Sum y | -7.73E-02 -7.72E-02 |
| Sum z | -7.80E-14 -7.82E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 8.66E-01 8.76E-01 |
| Weighted Average x | 2.88E-03 2.90E-03 |
| Weighted Average y | 5.70E-04 5.73E-04 |
| Weighted Average z | 1.04E-15 1.04E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 1.95E-01 1.45E-01 |
| Sum x | -4.14E-01 -4.13E-01 |
| Sum y | -9.62E-02 -9.61E-02 |
| Sum z | -6.32E-14 -6.34E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 7.07E-03 7.43E-03 |
| Weighted Average x | 2.86E-03 2.88E-03 |
| Weighted Average y | 5.70E-04 5.72E-04 |
| Weighted Average z | 1.06E-15 1.06E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 5.16E-03 3.60E-03 |
| Sum x | -4.12E-01 -4.11E-01 |
| Sum y | -9.58E-02 -9.57E-02 |
| Sum z | -6.35E-14 -6.37E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 2.36E-04 2.54E-04 |
| Weighted Average x | 2.86E-03 2.89E-03 |
| Weighted Average y | 5.70E-04 5.72E-04 |
| Weighted Average z | 1.06E-15 1.06E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 4 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 7.57E-05 5.06E-05 |
| Sum x | -4.12E-01 -4.11E-01 |
| Sum y | -9.58E-02 -9.57E-02 |
| Sum z | -6.25E-14 -6.27E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 8.07E-06 8.61E-06 |
| Weighted Average x | 2.86E-03 2.89E-03 |
| Weighted Average y | 5.70E-04 5.72E-04 |
| Weighted Average z | 1.05E-15 1.06E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
+=============================================================================+
| COUPLING STEP = 13 SIMULATION TIME = 1.30000E+00 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 9.73E-06 6.85E-06 |
| Sum x | -4.12E-01 -4.11E-01 |
| Sum y | -9.58E-02 -9.57E-02 |
| Sum z | -6.31E-14 -6.33E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 7.73E-01 7.93E-01 |
| Weighted Average x | 6.34E-03 6.36E-03 |
| Weighted Average y | 1.34E-03 1.34E-03 |
| Weighted Average z | -3.34E-16 -3.66E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 1.13E-01 8.27E-02 |
| Sum x | -4.27E-01 -4.26E-01 |
| Sum y | -9.72E-02 -9.71E-02 |
| Sum z | -2.63E-14 -2.65E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 2.14E-03 2.11E-03 |
| Weighted Average x | 6.32E-03 6.34E-03 |
| Weighted Average y | 1.35E-03 1.34E-03 |
| Weighted Average z | -2.78E-16 -3.05E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 6.58E-03 4.78E-03 |
| Sum x | -4.24E-01 -4.24E-01 |
| Sum y | -9.66E-02 -9.65E-02 |
| Sum z | -2.56E-14 -2.58E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 7.36E-05 7.41E-05 |
| Weighted Average x | 6.32E-03 6.34E-03 |
| Weighted Average y | 1.35E-03 1.34E-03 |
| Weighted Average z | -2.46E-16 -2.72E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 4 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 2.38E-04 1.71E-04 |
| Sum x | -4.24E-01 -4.24E-01 |
| Sum y | -9.66E-02 -9.65E-02 |
| Sum z | -2.54E-14 -2.57E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 3.81E-06 3.99E-06 |
| Weighted Average x | 6.32E-03 6.34E-03 |
| Weighted Average y | 1.35E-03 1.34E-03 |
| Weighted Average z | -2.72E-16 -2.97E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
+=============================================================================+
| COUPLING STEP = 14 SIMULATION TIME = 1.40000E+00 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 1.71E-05 1.24E-05 |
| Sum x | -4.24E-01 -4.24E-01 |
| Sum y | -9.66E-02 -9.65E-02 |
| Sum z | -2.52E-14 -2.54E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 7.44E-01 7.71E-01 |
| Weighted Average x | 9.27E-03 9.27E-03 |
| Weighted Average y | 2.02E-03 2.01E-03 |
| Weighted Average z | -5.16E-16 -5.60E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 1.05E-01 7.17E-02 |
| Sum x | -4.22E-01 -4.21E-01 |
| Sum y | -8.92E-02 -8.91E-02 |
| Sum z | -2.07E-15 -2.26E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 1.11E-03 1.18E-03 |
| Weighted Average x | 9.26E-03 9.26E-03 |
| Weighted Average y | 2.02E-03 2.00E-03 |
| Weighted Average z | -8.93E-16 -9.33E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 3.38E-03 2.40E-03 |
| Sum x | -4.20E-01 -4.20E-01 |
| Sum y | -8.88E-02 -8.87E-02 |
| Sum z | 1.10E-15 9.07E-16 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 2.72E-05 2.79E-05 |
| Weighted Average x | 9.26E-03 9.26E-03 |
| Weighted Average y | 2.02E-03 2.00E-03 |
| Weighted Average z | -9.00E-16 -9.35E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 4 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 2.46E-04 1.70E-04 |
| Sum x | -4.20E-01 -4.19E-01 |
| Sum y | -8.88E-02 -8.87E-02 |
| Sum z | 1.97E-15 1.77E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 2.18E-06 2.29E-06 |
| Weighted Average x | 9.26E-03 9.26E-03 |
| Weighted Average y | 2.02E-03 2.00E-03 |
| Weighted Average z | -8.97E-16 -9.44E-16 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
+=============================================================================+
| COUPLING STEP = 15 SIMULATION TIME = 1.50000E+00 [s] |
+=============================================================================+
+=============================================================================+
| COUPLING ITERATIONS |
+-----------------------------------------------------------------------------+
| | Source Target |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 1 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 1.33E-05 9.15E-06 |
| Sum x | -4.20E-01 -4.19E-01 |
| Sum y | -8.88E-02 -8.87E-02 |
| Sum z | 1.61E-15 1.41E-15 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Not yet converged |
| RMS Change | 7.33E-01 7.62E-01 |
| Weighted Average x | 1.20E-02 1.20E-02 |
| Weighted Average y | 2.31E-03 2.30E-03 |
| Weighted Average z | -2.57E-15 -2.58E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 2 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 7.15E-02 5.03E-02 |
| Sum x | -4.41E-01 -4.41E-01 |
| Sum y | -7.62E-02 -7.62E-02 |
| Sum z | -1.98E-14 -1.99E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 1.62E-03 1.80E-03 |
| Weighted Average x | 1.20E-02 1.20E-02 |
| Weighted Average y | 2.31E-03 2.29E-03 |
| Weighted Average z | -2.52E-15 -2.52E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Not yet converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 3 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Not yet converged |
| RMS Change | 2.14E-03 1.44E-03 |
| Sum x | -4.41E-01 -4.40E-01 |
| Sum y | -7.60E-02 -7.59E-02 |
| Sum z | -1.36E-14 -1.38E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 3.90E-05 4.17E-05 |
| Weighted Average x | 1.20E-02 1.20E-02 |
| Weighted Average y | 2.31E-03 2.29E-03 |
| Weighted Average z | -2.30E-15 -2.29E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+-----------------------------------------------------------------------------+
| COUPLING ITERATION = 4 |
+-----------------------------------------------------------------------------+
| MAPDL Transient | |
| Interface: Interface-1 | |
| Force | Converged |
| RMS Change | 1.91E-04 1.28E-04 |
| Sum x | -4.41E-01 -4.40E-01 |
| Sum y | -7.60E-02 -7.59E-02 |
| Sum z | -1.37E-14 -1.38E-14 |
+-----------------------------------------------------------------------------+
| Fluid Flow (Fluent) | |
| Interface: Interface-1 | |
| displacement | Converged |
| RMS Change | 1.45E-06 1.48E-06 |
| Weighted Average x | 1.20E-02 1.20E-02 |
| Weighted Average y | 2.31E-03 2.29E-03 |
| Weighted Average z | -2.16E-15 -2.14E-15 |
+-----------------------------------------------------------------------------+
| Participant solution status | |
| MAPDL Transient | Converged |
| Fluid Flow (Fluent) | Converged |
+=============================================================================+
===============================================================================
+=============================================================================+
| |
| Shut Down |
| |
+=============================================================================+
===============================================================================
+=============================================================================+
| Available Restart Points |
+=============================================================================+
| Restart Point | File Name |
+-----------------------------------------------------------------------------+
| Coupling Step 2 | Restart_step2.h5 |
| Coupling Step 4 | Restart_step4.h5 |
| Coupling Step 6 | Restart_step6.h5 |
| Coupling Step 8 | Restart_step8.h5 |
| Coupling Step 10 | Restart_step10.h5 |
| Coupling Step 12 | Restart_step12.h5 |
| Coupling Step 14 | Restart_step14.h5 |
| Coupling Step 15 | Restart_step15.h5 |
+=============================================================================+
+=============================================================================+
| Timing Summary [s] |
+=============================================================================+
| Total Time : 4.38544E+01 |
| Coupling Participant Time |
| Fluid Flow (Fluent) : 3.24801E+01 |
| MAPDL Transient : 2.41271E+00 |
| Total : 3.48928E+01 |
| Coupling Engine Time |
| Solution Control : 3.82275E+00 |
| Mesh Import : 3.59231E-02 |
| Mapping Setup : 4.21090E-03 |
| Mapping : 4.16100E-03 |
| Numerics : 1.11373E-02 |
| Misc. : 5.08346E+00 |
| Total : 8.96165E+00 |
+=============================================================================+
+=============================================================================+
| System coupling run completed successfully. |
Stop streaming output and shut down the server instance#
Stop streaming output from the server and shut down the server instance.
syc.end_output()
syc.exit()
Note
This syc
object is now defunct. Any attempt to
use it to perform a further action yields an error. To do
more in the current Python session, you must create a new syc
instance
using syc = pysystemcoupling.launch()
.
Total running time of the script: ( 2 minutes 22.811 seconds)