COOLFluiD
Release kernel
COOLFluiD is a Collaborative Simulation Environment (CSE) focused on complex MultiPhysics simulations.
|
Variables | |
tuple | root = cf.Core.root() |
tuple | env = cf.Core.environment() |
tuple | model = root.create_component('NavierStokes', 'cf3.solver.ModelUnsteady') |
Global configuration. More... | |
tuple | domain = model.create_domain() |
tuple | physics = model.create_physics('cf3.UFEM.NavierStokesPhysics') |
tuple | solver = model.create_solver('cf3.UFEM.Solver') |
tuple | nstokes = solver.add_unsteady_solver('cf3.UFEM.NavierStokes') |
tuple | satm = solver.add_unsteady_solver('cf3.UFEM.SpalartAllmaras') |
tuple | blocks = domain.create_component('blocks', 'cf3.mesh.BlockMesh.BlockArrays') |
tuple | points = blocks.create_points(dimensions = 2, nb_points = 12) |
tuple | block_nodes = blocks.create_blocks(6) |
tuple | block_subdivs = blocks.create_block_subdivisions() |
tuple | gradings = blocks.create_block_gradings() |
tuple | inlet_patch = blocks.create_patch_nb_faces(name = 'inlet', nb_faces = 2) |
tuple | bottom_patch1 = blocks.create_patch_nb_faces(name = 'bottom1', nb_faces = 1) |
tuple | bottom_patch2 = blocks.create_patch_nb_faces(name = 'bottom2', nb_faces = 1) |
tuple | bottom_patch3 = blocks.create_patch_nb_faces(name = 'bottom3', nb_faces = 1) |
tuple | outlet_patch = blocks.create_patch_nb_faces(name = 'outlet', nb_faces = 2) |
tuple | top_patch = blocks.create_patch_nb_faces(name = 'top', nb_faces = 3) |
tuple | mesh = domain.create_component('Mesh', 'cf3.mesh.Mesh') |
list | u_in = [1., 0.] |
list | u_wall = [0., 0.] |
float | NU_in = 0.001 |
int | NU_wall = 0 |
tuple | wall_distance = domain.create_component('WallDistance', 'cf3.mesh.actions.WallDistance') |
tuple | bc = nstokes.get_child('BoundaryConditions') |
tuple | time = model.create_time() |
float | final_end_time = 0.5 |
float | save_interval = 0.1 |
int | iteration = 0 |
tuple bc = nstokes.get_child('BoundaryConditions') |
Definition at line 122 of file atest-flatplate2d-spalartallmaras.py.
tuple block_nodes = blocks.create_blocks(6) |
Definition at line 47 of file atest-flatplate2d-spalartallmaras.py.
tuple block_subdivs = blocks.create_block_subdivisions() |
Definition at line 56 of file atest-flatplate2d-spalartallmaras.py.
tuple blocks = domain.create_component('blocks', 'cf3.mesh.BlockMesh.BlockArrays') |
Definition at line 30 of file atest-flatplate2d-spalartallmaras.py.
tuple bottom_patch1 = blocks.create_patch_nb_faces(name = 'bottom1', nb_faces = 1) |
Definition at line 77 of file atest-flatplate2d-spalartallmaras.py.
tuple bottom_patch2 = blocks.create_patch_nb_faces(name = 'bottom2', nb_faces = 1) |
Definition at line 80 of file atest-flatplate2d-spalartallmaras.py.
tuple bottom_patch3 = blocks.create_patch_nb_faces(name = 'bottom3', nb_faces = 1) |
Definition at line 83 of file atest-flatplate2d-spalartallmaras.py.
tuple domain = model.create_domain() |
Definition at line 19 of file atest-flatplate2d-spalartallmaras.py.
tuple env = cf.Core.environment() |
Definition at line 8 of file atest-flatplate2d-spalartallmaras.py.
float final_end_time = 0.5 |
Definition at line 144 of file atest-flatplate2d-spalartallmaras.py.
tuple gradings = blocks.create_block_gradings() |
Definition at line 64 of file atest-flatplate2d-spalartallmaras.py.
tuple inlet_patch = blocks.create_patch_nb_faces(name = 'inlet', nb_faces = 2) |
Definition at line 73 of file atest-flatplate2d-spalartallmaras.py.
int iteration = 0 |
Definition at line 146 of file atest-flatplate2d-spalartallmaras.py.
tuple mesh = domain.create_component('Mesh', 'cf3.mesh.Mesh') |
Definition at line 95 of file atest-flatplate2d-spalartallmaras.py.
tuple model = root.create_component('NavierStokes', 'cf3.solver.ModelUnsteady') |
Global configuration.
Definition at line 18 of file atest-flatplate2d-spalartallmaras.py.
tuple nstokes = solver.add_unsteady_solver('cf3.UFEM.NavierStokes') |
Definition at line 24 of file atest-flatplate2d-spalartallmaras.py.
float NU_in = 0.001 |
Definition at line 104 of file atest-flatplate2d-spalartallmaras.py.
int NU_wall = 0 |
Definition at line 105 of file atest-flatplate2d-spalartallmaras.py.
tuple outlet_patch = blocks.create_patch_nb_faces(name = 'outlet', nb_faces = 2) |
Definition at line 86 of file atest-flatplate2d-spalartallmaras.py.
tuple physics = model.create_physics('cf3.UFEM.NavierStokesPhysics') |
Definition at line 20 of file atest-flatplate2d-spalartallmaras.py.
tuple points = blocks.create_points(dimensions = 2, nb_points = 12) |
Definition at line 31 of file atest-flatplate2d-spalartallmaras.py.
tuple root = cf.Core.root() |
Definition at line 7 of file atest-flatplate2d-spalartallmaras.py.
tuple satm = solver.add_unsteady_solver('cf3.UFEM.SpalartAllmaras') |
Definition at line 27 of file atest-flatplate2d-spalartallmaras.py.
float save_interval = 0.1 |
Definition at line 145 of file atest-flatplate2d-spalartallmaras.py.
tuple solver = model.create_solver('cf3.UFEM.Solver') |
Definition at line 21 of file atest-flatplate2d-spalartallmaras.py.
tuple time = model.create_time() |
Definition at line 139 of file atest-flatplate2d-spalartallmaras.py.
tuple top_patch = blocks.create_patch_nb_faces(name = 'top', nb_faces = 3) |
Definition at line 90 of file atest-flatplate2d-spalartallmaras.py.
list u_in = [1., 0.] |
Definition at line 102 of file atest-flatplate2d-spalartallmaras.py.
list u_wall = [0., 0.] |
Definition at line 103 of file atest-flatplate2d-spalartallmaras.py.
tuple wall_distance = domain.create_component('WallDistance', 'cf3.mesh.actions.WallDistance') |
Definition at line 116 of file atest-flatplate2d-spalartallmaras.py.
Send comments to: COOLFluiD Web Admin |