Reporting examples#

Load DAVE, DAVE.jupyter. Start a scene and load the cheetah as example model.

from DAVE import *
from DAVE.jupyter import *
s = Scene('cheetah.dave')
DAVEcore version = 2.0 from c:\python\miniconda3\envs\book\Lib\site-packages\DAVEcore.cp311-win_amd64.pyd
! Blender not found - Blender can be installed from the microsoft windows store.   if you have blender already and want to be able to use blender then please either:
   - configure windows to open .blend files with blender automatically 
   - add the folder containing blender-launcher.exe to the PATH variable.
Loading c:\python\miniconda3\envs\book\Lib\site-packages\DAVE\resources\cheetah.dave
c:\python\miniconda3\envs\book\Lib\site-packages\DAVE\nodes.py:4634: UserWarning: BallastSystem.new_tank is outdated and may be removed in a future version.
  warn(

Including screenshots#

The show command renders a visual of the model. The code for camera-positions and visual settings can be generated from the Gui by clicking the small copy button on the top-right of the viewport.

image

show(s, show_global = True, camera_pos = (400, -200, 40), lookat = (100,0,0), painters='Visual', width=3000, height = 1000)
No actors created for node Ballast_system
../_images/80bf49807128fca75f09b9961c61350d6c537cc2831dfc019ae4b7f3137daa14.png

Report the node names#

s.print_node_tree()
Cheetah [RigidBody]
 |-> DP reference point [Frame]
 |-> buoyancy [Buoyancy]
 |-> ps1 [Tank]
 |-> sb1 [Tank]
 |-> mid1 [Tank]
 |-> ps2 [Tank]
 |-> sb2 [Tank]
 |-> mid2 [Tank]
 |-> ps3 [Tank]
 |-> sb3 [Tank]
 |-> mid3 [Tank]
 |-> ps4 [Tank]
 |-> sb4 [Tank]
 |-> mid4 [Tank]
 |-> ps5 [Tank]
 |-> sb5 [Tank]
 |-> mid5 [Tank]
 |-> ps6 [Tank]
 |-> sb6 [Tank]
 |-> mid6 [Tank]
 |-> ps7 [Tank]
 |-> sb7 [Tank]
 |-> mid7 [Tank]
 |-> ps8 [Tank]
 |-> sb8 [Tank]
 |-> mid8 [Tank]
 |-> ps9 [Tank]
 |-> sb9 [Tank]
 |-> bow [Tank]
 |-> visual - vessel [Visual]
 |-> Wave Interaction draft 6.75 [WaveInteraction1]
 |-> Ballast_system [BallastSystem]
DP setpoint for cheetah [Frame]
DP springs cheetah [LC6d]

Report all properties of a single node#

To report all properties of a node use “report” without any additional arguments:

node = s['buoyancy']
report(node)
Properties of buoyancy (Buoyancy)
PropertyValueUnitRemarksExplained
cob(103.550,
-0.000,
-3.171 )
[m,
m,
m]
global axisGLOBAL position of the center of buoyancy
cob_local(103.550,
-0.000,
3.579 )
[m,
m,
m]
local axisPosition of the center of buoyancy
displacement53290.760[m^3]Displaced volume of fluid
namebuoyancyName of the node (str), must be unique
visibleTrue[bool]Determines if this node is visible in the viewport


Report fewer properties#

To limit the amount of properties you can specify which property or properties should be included using the “properties” argument. This should be a list or a tuple.

report(node, ['cob'])
Properties of buoyancy (Buoyancy)
PropertyValueUnitRemarksExplained
cob(103.550,
-0.000,
-3.171 )
[m,
m,
m]
global axisGLOBAL position of the center of buoyancy

report(node, properties = ['cob','displacement'])
Properties of buoyancy (Buoyancy)
PropertyValueUnitRemarksExplained
cob(103.550,
-0.000,
-3.171 )
[m,
m,
m]
global axisGLOBAL position of the center of buoyancy
displacement53290.760[m^3]Displaced volume of fluid

Wildcards#

It is also possible to use wildcards in the property names. The classic * and ? wildcards are allowed.

A ‘*’ means any number of characters.

A ‘?’ means any single character

Examples:

  • ‘position*’ matches position, position_x and position_y

  • global’ matches any property containing “global”

  • ‘position??’ matches position_x, position_y but NOT position because there need to be two characters behind position.

report(node, ['*cob*'])
Properties of buoyancy (Buoyancy)
PropertyValueUnitRemarksExplained
cob(103.550,
-0.000,
-3.171 )
[m,
m,
m]
global axisGLOBAL position of the center of buoyancy
cob_local(103.550,
-0.000,
3.579 )
[m,
m,
m]
local axisPosition of the center of buoyancy

report(s['Cheetah'],['*force??'])
Properties of Cheetah (RigidBody)
PropertyValueUnitRemarksExplained
connection_force_x0.000[kN]Parent axisThe x-component of the connection-force vector
connection_force_y0.000[kN]Parent axisThe y-component of the connection-force vector
connection_force_z0.000[kN]Parent axisThe z-component of the connection-force vector

Report more information about the properties#

Finally the “long” argument can be used to display the full documentation of the properties.

report(s['Cheetah'], long=True)
Properties of Cheetah (RigidBody)
PropertyValueUnitRemarksExplained
applied_force(0.000,
0.000,
339535.926,
-0.048,
-34678469.127,
0.000 )
[kN,
kN,
kN,
kNm,
kNm,
kNm]
Global axisThe force and moment that is applied on origin of this axis [kN, kN, kN, kNm, kNm, kNm] (Global axis)
cog(106.000,
0.000,
7.000 )
[m,
m,
m]
local axisCenter of Gravity position [m,m,m] (local axis)
cogx106.000[m]local axisx-component of cog position [m] (local axis)
cogy0.000[m]local axisy-component of cog position [m] (local axis)
cogz7.000[m]local axisz-component of cog position [m] (local axis)
connection_force(0.000,
0.000,
0.000,
0.000,
0.000,
0.000 )
[kN,
kN,
kN,
kNm,
kNm,
kNm]
Parent axisThe forces and moments that this axis applies on its parent at the origin of this axis system. [kN, kN, kN, kNm, kNm, kNm] (Parent axis) If this axis would be connected to a point on its parent, and that point would be located at the location of the origin of this axis system then the connection force equals the force and moment applied on that point. Example: parent axis with name A this axis with name B this axis is located on A at position (10,0,0) there is a Point at the center of this axis system. A force with Fz = -10 acts on the Point. The connection_force is (-10,0,0,0,0,0) This is the force and moment as applied on A at point (10,0,0)
connection_force_x0.000[kN]Parent axisThe x-component of the connection-force vector [kN] (Parent axis)
connection_force_y0.000[kN]Parent axisThe y-component of the connection-force vector [kN] (Parent axis)
connection_force_z0.000[kN]Parent axisThe z-component of the connection-force vector [kN] (Parent axis)
connection_moment_x0.000[kNm]Parent axisThe mx-component of the connection-force vector [kNm] (Parent axis)
connection_moment_y0.000[kNm]Parent axisThe my-component of the connection-force vector [kNm] (Parent axis)
connection_moment_z0.000[kNm]Parent axisThe mx-component of the connection-force vector [kNm] (Parent axis)
equilibrium_error(0.000,
0.000,
339535.926,
-0.048,
-34678469.127,
0.000 )
[kN,
kN,
kN,
kNm,
kNm,
kNm]
applied-force minus connection force, Parent axisThe remaining force and moment on this axis. Should be zero when in equilibrium [kN,kN,kN,kNm,kNm,kNm] (applied-force minus connection force, Parent axis)
fixed(0.000,
0.000,
0.000,
0.000,
0.000,
0.000 )
Determines which of the six degrees of freedom are fixed, if any. (x,y,z,rx,ry,rz). True means that that degree of freedom will not change when solving statics. False means a that is may be changed in order to find equilibrium. These are the expressed on the coordinate system of the parent (if any) or the global axis system (if no parent) See Also: set_free, set_fixed
fixed_rxFalseRestricts/allows movement about x direction of parent
fixed_ryFalseRestricts/allows movement about y direction of parent
fixed_rzFalseRestricts/allows movement about z direction of parent
fixed_xFalseRestricts/allows movement in x direction of parent
fixed_yFalseRestricts/allows movement in y direction of parent
fixed_zFalseRestricts/allows movement in z direction of parent
footprint((0.0,
0.0,
5.0),
(215.0,
0.0,
5.0))
Sets the footprint vertices. Supply as an iterable with each element containing three floats
global_position(0.000,
0.000,
-6.750 )
[m,
m,
m]
global axisThe global position of the origin of the axis system [m,m,m] (global axis)
global_rotation(0.000,
0.000,
0.000 )
[deg,
deg,
deg]
global axisRotation vector [deg,deg,deg] (global axis)
grx0.000[degrees]global axisThe x-component of the global rotation vector [degrees] (global axis)
gry0.000[degrees]global axisThe y-component of the global rotation vector [degrees] (global axis)
grz0.000[degrees]global axisThe z-component of the global rotation vector [degrees] (global axis)
gx0.000[m]global axis The x-component of the global position vector [m] (global axis )
gy0.000[m]global axis The y-component of the global position vector [m] (global axis )
gz-6.750[m]global axis The z-component of the global position vector [m] (global axis )
heading0.000[deg]Direction (0..360) [deg] of the local x-axis relative to the global x axis. Measured about the global z axis heading = atan(u_y,u_x) typically: heading 0 --> local axis align with global axis heading 90 --> local x-axis in direction of global y axis See also: heading_compass
heading_compass90.000[deg]The heading (0..360)[deg] assuming that the global y-axis is North and global x-axis is East and rotation according compass definition
heel0.000[deg]Heel in degrees. SB down is positive [deg] This is the inverse sin of the unit y vector(This is the arcsin of the tiltx) See also: tilt_x
inertia20000.000[mT]The linear inertia or 'mass' of the axis [mT] - used only for dynamics
inertia_position(106.000,
0.000,
7.000 )
[m,
m,
m]
local axisThe position of the center of inertia. Aka: "cog" [m,m,m] (local axis) - used only for dynamics - defined in local axis system
inertia_radii(20.000,
80.000,
80.000 )
[m,
m,
m]
local axisThe radii of gyration of the inertia [m,m,m] (local axis) Used to calculate the mass moments of inertia via Ixx = rxx^2 * inertia Iyy = rxx^2 * inertia Izz = rxx^2 * inertia Note that DAVE does not directly support cross terms in the interia matrix of an axis system. If you want to use cross terms then combine multiple axis system to reach the same result. This is because inertia matrices with diagonal terms can not be translated.
mass20000.000[mT]Static mass of the body [mT] See Also: inertia
nameCheetahName of the node (str), must be unique
position(0.000,
0.000,
-6.750 )
[m,
m,
m]
parent axisPosition of the axis (parent axis) [m,m,m] These are the expressed on the coordinate system of the parent (if any) or the global axis system (if no parent)
rotation(0.000,
0.000,
0.000 )
[degrees]Rotation of the frame about its origin as rotation-vector (rx,ry,rz) [degrees]. Defined as a rotation about an axis where the direction of the axis is (rx,ry,rz) and the angle of rotation is |(rx,ry,rz| degrees. These are the expressed on the coordinate system of the parent (if any) or the global axis system (if no parent)
rx0.000[degrees]parent axisThe x-component of the rotation vector [degrees] (parent axis)
ry0.000[degrees]parent axisThe y-component of the rotation vector [degrees] (parent axis)
rz0.000[degrees]parent axisThe z-component of the rotation vector [degrees], (parent axis)
tilt_x0.000[%]Tilt percentage about local x-axis [%] This is the z-component of the unit y vector. See Also: heel, tilt_y
tilt_y0.000[%]Tilt percentage about local y-axis [%] This is the z-component of the unit -x vector. So a positive rotation about the y axis results in a positive tilt_y. See Also: trim
trim0.000[deg]Trim in degrees. Bow-down is positive [deg] This is the inverse sin of the unit -x vector(This is the arcsin of the tilt_y) See also: tilt_y
ux(1.000,
0.000,
0.000 )
[m,
m,
m]
Global axisThe unit x axis [m,m,m] (Global axis)
uy(0.000,
1.000,
0.000 )
[m,
m,
m]
Global axisThe unit y axis [m,m,m] (Global axis)
uz(0.000,
0.000,
1.000 )
[m,
m,
m]
Global axisThe unit z axis [m,m,m] (Global axis)
visibleTrue[bool]Determines if this node is visible in the viewport [bool]
x0.000[m]parent axisThe x-component of the position vector (parent axis) [m]
y0.000[m]parent axisThe y-component of the position vector (parent axis) [m]
z-6.750[m]parent axisThe z-component of the position vector (parent axis) [m]

It is also possible to blindly export ALL data#

for n in s._nodes:
    report(n)
Properties of Cheetah (RigidBody)
PropertyValueUnitRemarksExplained
applied_force(0.000,
0.000,
339535.926,
-0.048,
-34678469.127,
0.000 )
[kN,
kN,
kN,
kNm,
kNm,
kNm]
Global axisThe force and moment that is applied on origin of this axis
cog(106.000,
0.000,
7.000 )
[m,
m,
m]
local axisCenter of Gravity position
cogx106.000[m]local axisx-component of cog position
cogy0.000[m]local axisy-component of cog position
cogz7.000[m]local axisz-component of cog position
connection_force(0.000,
0.000,
0.000,
0.000,
0.000,
0.000 )
[kN,
kN,
kN,
kNm,
kNm,
kNm]
Parent axisThe forces and moments that this axis applies on its parent at the origin of this axis system.
connection_force_x0.000[kN]Parent axisThe x-component of the connection-force vector
connection_force_y0.000[kN]Parent axisThe y-component of the connection-force vector
connection_force_z0.000[kN]Parent axisThe z-component of the connection-force vector
connection_moment_x0.000[kNm]Parent axisThe mx-component of the connection-force vector
connection_moment_y0.000[kNm]Parent axisThe my-component of the connection-force vector
connection_moment_z0.000[kNm]Parent axisThe mx-component of the connection-force vector
equilibrium_error(0.000,
0.000,
339535.926,
-0.048,
-34678469.127,
0.000 )
[kN,
kN,
kN,
kNm,
kNm,
kNm]
applied-force minus connection force, Parent axisThe remaining force and moment on this axis. Should be zero when in equilibrium
fixed(0.000,
0.000,
0.000,
0.000,
0.000,
0.000 )
Determines which of the six degrees of freedom are fixed, if any. (x,y,z,rx,ry,rz).
fixed_rxFalseRestricts/allows movement about x direction of parent
fixed_ryFalseRestricts/allows movement about y direction of parent
fixed_rzFalseRestricts/allows movement about z direction of parent
fixed_xFalseRestricts/allows movement in x direction of parent
fixed_yFalseRestricts/allows movement in y direction of parent
fixed_zFalseRestricts/allows movement in z direction of parent
footprint((0.0,
0.0,
5.0),
(215.0,
0.0,
5.0))
Sets the footprint vertices. Supply as an iterable with each element containing three floats
global_position(0.000,
0.000,
-6.750 )
[m,
m,
m]
global axisThe global position of the origin of the axis system
global_rotation(0.000,
0.000,
0.000 )
[deg,
deg,
deg]
global axisRotation vector
grx0.000[degrees]global axisThe x-component of the global rotation vector
gry0.000[degrees]global axisThe y-component of the global rotation vector
grz0.000[degrees]global axisThe z-component of the global rotation vector
gx0.000[m]global axis The x-component of the global position vector
gy0.000[m]global axis The y-component of the global position vector
gz-6.750[m]global axis The z-component of the global position vector
heading0.000[deg]Direction (0..360) of the local x-axis relative to the global x axis. Measured about the global z axis
heading_compass90.000[deg]The heading (0..360) assuming that the global y-axis is North and global x-axis is East and rotation according compass definition
heel0.000[deg]Heel in degrees. SB down is positive
inertia20000.000[mT]The linear inertia or 'mass' of the axis
inertia_position(106.000,
0.000,
7.000 )
[m,
m,
m]
local axisThe position of the center of inertia. Aka: "cog"
inertia_radii(20.000,
80.000,
80.000 )
[m,
m,
m]
local axisThe radii of gyration of the inertia
mass20000.000[mT]Static mass of the body
nameCheetahName of the node (str), must be unique
position(0.000,
0.000,
-6.750 )
[m,
m,
m]
parent axisPosition of the axis
rotation(0.000,
0.000,
0.000 )
[degrees]Rotation of the frame about its origin as rotation-vector (rx,ry,rz) .
rx0.000[degrees]parent axisThe x-component of the rotation vector
ry0.000[degrees]parent axisThe y-component of the rotation vector
rz0.000[degrees]parent axisThe z-component of the rotation vector ,
tilt_x0.000[%]Tilt percentage about local x-axis
tilt_y0.000[%]Tilt percentage about local y-axis
trim0.000[deg]Trim in degrees. Bow-down is positive
ux(1.000,
0.000,
0.000 )
[m,
m,
m]
Global axisThe unit x axis
uy(0.000,
1.000,
0.000 )
[m,
m,
m]
Global axisThe unit y axis
uz(0.000,
0.000,
1.000 )
[m,
m,
m]
Global axisThe unit z axis
visibleTrue[bool]Determines if this node is visible in the viewport
x0.000[m]parent axisThe x-component of the position vector
y0.000[m]parent axisThe y-component of the position vector
z-6.750[m]parent axisThe z-component of the position vector

Properties of DP setpoint for cheetah (Frame)
PropertyValueUnitRemarksExplained
applied_force(0.000,
0.000,
0.000,
0.000,
0.000,
0.000 )
[kN,
kN,
kN,
kNm,
kNm,
kNm]
Global axisThe force and moment that is applied on origin of this axis
connection_force(0.000,
0.000,
0.000,
0.000,
0.000,
0.000 )
[kN,
kN,
kN,
kNm,
kNm,
kNm]
Parent axisThe forces and moments that this axis applies on its parent at the origin of this axis system.
connection_force_x0.000[kN]Parent axisThe x-component of the connection-force vector
connection_force_y0.000[kN]Parent axisThe y-component of the connection-force vector
connection_force_z0.000[kN]Parent axisThe z-component of the connection-force vector
connection_moment_x0.000[kNm]Parent axisThe mx-component of the connection-force vector
connection_moment_y0.000[kNm]Parent axisThe my-component of the connection-force vector
connection_moment_z0.000[kNm]Parent axisThe mx-component of the connection-force vector
equilibrium_error(0.000,
0.000,
0.000,
0.000,
0.000,
0.000 )
[kN,
kN,
kN,
kNm,
kNm,
kNm]
applied-force minus connection force, Parent axisThe remaining force and moment on this axis. Should be zero when in equilibrium
fixed(1.000,
1.000,
1.000,
1.000,
1.000,
1.000 )
Determines which of the six degrees of freedom are fixed, if any. (x,y,z,rx,ry,rz).
fixed_rxTrueRestricts/allows movement about x direction of parent
fixed_ryTrueRestricts/allows movement about y direction of parent
fixed_rzTrueRestricts/allows movement about z direction of parent
fixed_xTrueRestricts/allows movement in x direction of parent
fixed_yTrueRestricts/allows movement in y direction of parent
fixed_zTrueRestricts/allows movement in z direction of parent
global_position(100.000,
0.000,
0.000 )
[m,
m,
m]
global axisThe global position of the origin of the axis system
global_rotation(0.000,
0.000,
0.000 )
[deg,
deg,
deg]
global axisRotation vector
grx0.000[degrees]global axisThe x-component of the global rotation vector
gry0.000[degrees]global axisThe y-component of the global rotation vector
grz0.000[degrees]global axisThe z-component of the global rotation vector
gx100.000[m]global axis The x-component of the global position vector
gy0.000[m]global axis The y-component of the global position vector
gz0.000[m]global axis The z-component of the global position vector
heading0.000[deg]Direction (0..360) of the local x-axis relative to the global x axis. Measured about the global z axis
heading_compass90.000[deg]The heading (0..360) assuming that the global y-axis is North and global x-axis is East and rotation according compass definition
heel0.000[deg]Heel in degrees. SB down is positive
inertia0[mT]The linear inertia or 'mass' of the axis
inertia_position(0.000,
0.000,
0.000 )
[m,
m,
m]
local axisThe position of the center of inertia. Aka: "cog"
inertia_radii(0.000,
0.000,
0.000 )
[m,
m,
m]
local axisThe radii of gyration of the inertia
nameDP setpoint for cheetahName of the node (str), must be unique
position(100.000,
0.000,
0.000 )
[m,
m,
m]
parent axisPosition of the axis
rotation(0.000,
0.000,
0.000 )
[degrees]Rotation of the frame about its origin as rotation-vector (rx,ry,rz) .
rx0.000[degrees]parent axisThe x-component of the rotation vector
ry0.000[degrees]parent axisThe y-component of the rotation vector
rz0.000[degrees]parent axisThe z-component of the rotation vector ,
tilt_x0.000[%]Tilt percentage about local x-axis
tilt_y0.000[%]Tilt percentage about local y-axis
trim0.000[deg]Trim in degrees. Bow-down is positive
ux(1.000,
0.000,
0.000 )
[m,
m,
m]
Global axisThe unit x axis
uy(0.000,
1.000,
0.000 )
[m,
m,
m]
Global axisThe unit y axis
uz(0.000,
0.000,
1.000 )
[m,
m,
m]
Global axisThe unit z axis
visibleTrue[bool]Determines if this node is visible in the viewport
x100.000[m]parent axisThe x-component of the position vector
y0.000[m]parent axisThe y-component of the position vector
z0.000[m]parent axisThe z-component of the position vector

Properties of DP reference point (Frame)
PropertyValueUnitRemarksExplained
applied_force(0.000,
0.000,
0.000,
0.000,
0.000,
0.000 )
[kN,
kN,
kN,
kNm,
kNm,
kNm]
Global axisThe force and moment that is applied on origin of this axis
connection_force(0.000,
0.000,
0.000,
0.000,
0.000,
0.000 )
[kN,
kN,
kN,
kNm,
kNm,
kNm]
Parent axisThe forces and moments that this axis applies on its parent at the origin of this axis system.
connection_force_x0.000[kN]Parent axisThe x-component of the connection-force vector
connection_force_y0.000[kN]Parent axisThe y-component of the connection-force vector
connection_force_z0.000[kN]Parent axisThe z-component of the connection-force vector
connection_moment_x0.000[kNm]Parent axisThe mx-component of the connection-force vector
connection_moment_y0.000[kNm]Parent axisThe my-component of the connection-force vector
connection_moment_z0.000[kNm]Parent axisThe mx-component of the connection-force vector
equilibrium_error(0.000,
0.000,
0.000,
0.000,
0.000,
0.000 )
[kN,
kN,
kN,
kNm,
kNm,
kNm]
applied-force minus connection force, Parent axisThe remaining force and moment on this axis. Should be zero when in equilibrium
fixed(1.000,
1.000,
1.000,
1.000,
1.000,
1.000 )
Determines which of the six degrees of freedom are fixed, if any. (x,y,z,rx,ry,rz).
fixed_rxTrueRestricts/allows movement about x direction of parent
fixed_ryTrueRestricts/allows movement about y direction of parent
fixed_rzTrueRestricts/allows movement about z direction of parent
fixed_xTrueRestricts/allows movement in x direction of parent
fixed_yTrueRestricts/allows movement in y direction of parent
fixed_zTrueRestricts/allows movement in z direction of parent
global_position(100.000,
0.000,
-6.750 )
[m,
m,
m]
global axisThe global position of the origin of the axis system
global_rotation(0.000,
0.000,
0.000 )
[deg,
deg,
deg]
global axisRotation vector
grx0.000[degrees]global axisThe x-component of the global rotation vector
gry0.000[degrees]global axisThe y-component of the global rotation vector
grz0.000[degrees]global axisThe z-component of the global rotation vector
gx100.000[m]global axis The x-component of the global position vector
gy0.000[m]global axis The y-component of the global position vector
gz-6.750[m]global axis The z-component of the global position vector
heading0.000[deg]Direction (0..360) of the local x-axis relative to the global x axis. Measured about the global z axis
heading_compass90.000[deg]The heading (0..360) assuming that the global y-axis is North and global x-axis is East and rotation according compass definition
heel0.000[deg]Heel in degrees. SB down is positive
inertia0[mT]The linear inertia or 'mass' of the axis
inertia_position(0.000,
0.000,
0.000 )
[m,
m,
m]
local axisThe position of the center of inertia. Aka: "cog"
inertia_radii(0.000,
0.000,
0.000 )
[m,
m,
m]
local axisThe radii of gyration of the inertia
nameDP reference pointName of the node (str), must be unique
parentCheetahDetermines the parent of the axis. Should either be another axis or 'None'
position(100.000,
0.000,
0.000 )
[m,
m,
m]
parent axisPosition of the axis
rotation(0.000,
0.000,
0.000 )
[degrees]Rotation of the frame about its origin as rotation-vector (rx,ry,rz) .
rx0.000[degrees]parent axisThe x-component of the rotation vector
ry0.000[degrees]parent axisThe y-component of the rotation vector
rz0.000[degrees]parent axisThe z-component of the rotation vector ,
tilt_x0.000[%]Tilt percentage about local x-axis
tilt_y0.000[%]Tilt percentage about local y-axis
trim0.000[deg]Trim in degrees. Bow-down is positive
ux(1.000,
0.000,
0.000 )
[m,
m,
m]
Global axisThe unit x axis
uy(0.000,
1.000,
0.000 )
[m,
m,
m]
Global axisThe unit y axis
uz(0.000,
0.000,
1.000 )
[m,
m,
m]
Global axisThe unit z axis
visibleTrue[bool]Determines if this node is visible in the viewport
x100.000[m]parent axisThe x-component of the position vector
y0.000[m]parent axisThe y-component of the position vector
z0.000[m]parent axisThe z-component of the position vector

Properties of buoyancy (Buoyancy)
PropertyValueUnitRemarksExplained
cob(103.550,
-0.000,
-3.171 )
[m,
m,
m]
global axisGLOBAL position of the center of buoyancy
cob_local(103.550,
-0.000,
3.579 )
[m,
m,
m]
local axisPosition of the center of buoyancy
displacement53290.760[m^3]Displaced volume of fluid
namebuoyancyName of the node (str), must be unique
visibleTrue[bool]Determines if this node is visible in the viewport

Properties of ps1 (Tank)
PropertyValueUnitRemarksExplained
capacity1500.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(10.000,
12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(10.000,
12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full10.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-7.474[m]The fluid plane elevation in the global axis system
mesh_volume1500.000[m3]Volume enclosed by the mesh the tank
nameps1Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage11.447[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of sb1 (Tank)
PropertyValueUnitRemarksExplained
capacity1500.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(10.000,
-12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(10.000,
-12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full10.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full-12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-7.474[m]The fluid plane elevation in the global axis system
mesh_volume1500.000[m3]Volume enclosed by the mesh the tank
namesb1Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage11.447[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of mid1 (Tank)
PropertyValueUnitRemarksExplained
capacity1500.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(10.000,
0.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(10.000,
0.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full10.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full0.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-7.474[m]The fluid plane elevation in the global axis system
mesh_volume1500.000[m3]Volume enclosed by the mesh the tank
namemid1Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage11.447[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of ps2 (Tank)
PropertyValueUnitRemarksExplained
capacity1500.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(30.000,
12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(30.000,
12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full30.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-7.474[m]The fluid plane elevation in the global axis system
mesh_volume1500.000[m3]Volume enclosed by the mesh the tank
nameps2Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage11.447[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of sb2 (Tank)
PropertyValueUnitRemarksExplained
capacity1500.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(30.000,
-12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(30.000,
-12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full30.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full-12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-7.474[m]The fluid plane elevation in the global axis system
mesh_volume1500.000[m3]Volume enclosed by the mesh the tank
namesb2Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage11.447[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of mid2 (Tank)
PropertyValueUnitRemarksExplained
capacity1500.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(30.000,
0.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(30.000,
0.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full30.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full0.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-7.474[m]The fluid plane elevation in the global axis system
mesh_volume1500.000[m3]Volume enclosed by the mesh the tank
namemid2Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage11.447[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of ps3 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(50.000,
12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(50.000,
12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full50.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
nameps3Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of sb3 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(50.000,
-12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(50.000,
-12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full50.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full-12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
namesb3Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of mid3 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(50.000,
0.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(50.000,
0.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full50.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full0.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
namemid3Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of ps4 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(70.000,
12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(70.000,
12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full70.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
nameps4Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of sb4 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(70.000,
-12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(70.000,
-12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full70.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full-12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
namesb4Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of mid4 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(70.000,
0.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(70.000,
0.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full70.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full0.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
namemid4Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of ps5 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(90.000,
12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(90.000,
12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full90.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
nameps5Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of sb5 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(90.000,
-12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(90.000,
-12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full90.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full-12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
namesb5Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of mid5 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(90.000,
0.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(90.000,
0.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full90.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full0.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
namemid5Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of ps6 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(110.000,
12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(110.000,
12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full110.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
nameps6Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of sb6 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(110.000,
-12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(110.000,
-12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full110.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full-12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
namesb6Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of mid6 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(110.000,
0.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(110.000,
0.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full110.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full0.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
namemid6Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of ps7 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(130.000,
12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(130.000,
12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full130.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
nameps7Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of sb7 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(130.000,
-12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(130.000,
-12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full130.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full-12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
namesb7Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of mid7 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(130.000,
0.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(130.000,
0.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full130.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full0.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
namemid7Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of ps8 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(150.000,
12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(150.000,
12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full150.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
nameps8Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of sb8 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(150.000,
-12.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(150.000,
-12.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full150.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full-12.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
namesb8Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of mid8 (Tank)
PropertyValueUnitRemarksExplained
capacity2000.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(150.000,
0.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(150.000,
0.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full150.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full0.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.050[m]The fluid plane elevation in the global axis system
mesh_volume2000.000[m3]Volume enclosed by the mesh the tank
namemid8Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage12.599[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of ps9 (Tank)
PropertyValueUnitRemarksExplained
capacity2250.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(170.000,
8.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(170.000,
8.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full170.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full8.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.302[m]The fluid plane elevation in the global axis system
mesh_volume2250.000[m3]Volume enclosed by the mesh the tank
nameps9Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage13.104[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of sb9 (Tank)
PropertyValueUnitRemarksExplained
capacity2250.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(170.000,
-8.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(170.000,
-8.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full170.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full-8.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-8.302[m]The fluid plane elevation in the global axis system
mesh_volume2250.000[m3]Volume enclosed by the mesh the tank
namesb9Name of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage13.104[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of bow (Tank)
PropertyValueUnitRemarksExplained
capacity600.000[m3]Fillable volume of the tank calcualted as mesh volume times permeability
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity
cog_local(0.000,
0.000,
6.750 )
[m,
m,
m]
parent axisCenter of gravity
cog_when_full(190.000,
0.000,
5.000 )
[m,
m,
m]
parent axisLOCAL position of the center of volume / gravity of the tank when it is filled
cog_when_full_global(190.000,
0.000,
-1.750 )
[m,
m,
m]
globalGlobal position of the center of volume / gravity of the tank when it is filled
cogx_when_full190.000[m]parent axisx position of the center of volume / gravity of the tank when it is filled
cogy_when_full0.000[m]parent axisy position of the center of volume / gravity of the tank when it is filled
cogz_when_full5.000[m]parent axisz position of the center of volume / gravity of the tank when it is filled
density1.025[mT/m3]Density of the fluid in the tank. Density < 0 means use outside water density
fill_pct0.000[%]Amount of volume in tank as percentage of capacity
free_floodingFalse[bool]aka: damagedTank is filled till global waterline
level_global-5.967[m]The fluid plane elevation in the global axis system
mesh_volume600.000[m3]Volume enclosed by the mesh the tank
namebowName of the node (str), must be unique
permeability1.000[-]Permeability is the fraction of the meshed volume that can be filled with fluid
ullage8.434[m]Ullage of the tank
visibleTrue[bool]Determines if this node is visible in the viewport
volume0.000[m3]The actual volume of fluid in the tank

Properties of visual - vessel (Visual)
PropertyValueUnitRemarksExplained
namevisual - vessel[str]Name of the node (str), must be unique
visibleTrue[bool]Determines if this node is visible in the viewport

Properties of Wave Interaction draft 6.75 (WaveInteraction1)
PropertyValueUnitRemarksExplained
nameWave Interaction draft 6.75[str]Name of the node (str), must be unique
visibleTrue[bool]Determines if this node is visible in the viewport

Properties of DP springs cheetah (LC6d)
PropertyValueUnitRemarksExplained
fgx0.000[kN]Force on main in global coordinate frame
fgy0.000[kN]Force on main in global coordinate frame
fgz0.000[kN]Force on main in global coordinate frame
force_global(0.000,
0.000,
0.000 )
[kN,
kN,
kN,
kNm,
kNm,
kNm]
Force on main in global coordinate frame
mgx0.000[kNm]Moment on main in global coordinate frame
mgy0.000[kNm]Moment on main in global coordinate frame
mgz0.000[kNm]Moment on main in global coordinate frame
moment_global(0.000,
0.000,
0.000 )
[kNm,
kNm,
kNm]
Moment on main in global coordinate frame
nameDP springs cheetahName of the node (str), must be unique
stiffness(100.000,
100.000,
0.000,
0.000,
0.000,
10000.000 )
[kN/m and kNm/rad]axis system of the main axisStiffness of the connector: kx, ky, kz, krx, kry, krz in
visibleTrue[bool]Determines if this node is visible in the viewport

Properties of Ballast_system (BallastSystem)
PropertyValueUnitRemarksExplained
cog(0.000,
0.000,
0.000 )
[m,
m,
m]
global coordinateCombined CoG of all tank contents in the ballast-system.
cogx0.000[m]global coordinateX position of combined CoG of all tank contents in the ballast-system.
cogy0.000[m]global coordinateY position of combined CoG of all tank contents in the ballast-system.
cogz0.000[m]global coordinateZ position of combined CoG of all tank contents in the ballast-system.
nameBallast_system[str]Name of the node (str), must be unique
visibleTrue[bool]Determines if this node is visible in the viewport
weight0.000[kN]Total weight of all tank fillings in the ballast system