![]() |
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() |
| int | x_parts = 4 |
| int | y_parts = 2 |
| int | step_length = 10 |
| float | step_height = 4.9e-3 |
| float | channel_height = 5.2e-3 |
| int | channel_length = 150 |
| float | top_grading = 0.2 |
| float | bottom_grading = 0.2 |
| float | step_x_grading = 0.8 |
| float | channel_x_grading = 1.5 |
| int | step_x_segs = 20 |
| int | step_y_segs = 11 |
| int | channel_x_segs = 180 |
| int | channel_y_segs = 9 |
| tuple | domain = root.create_component('Domain', 'cf3.mesh.Domain') |
| tuple | blocks = domain.create_component('model', 'cf3.mesh.BlockMesh.BlockArrays') |
| tuple | points = blocks.create_points(dimensions = 2, nb_points = 13) |
| tuple | block_nodes = blocks.create_blocks(6) |
| list | y_segs = [int(math.ceil(step_y_segs/2.)), int(math.floor(step_y_segs/2.)), int(math.floor(channel_y_segs/2.)), int(math.ceil(channel_y_segs/2.))] |
| 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 | step_top = blocks.create_patch_nb_faces(name = 'step_top', nb_faces = 1) |
| tuple | step_front = blocks.create_patch_nb_faces(name = 'step_front', nb_faces = 2) |
| tuple | top_patch = blocks.create_patch_nb_faces(name = 'top', nb_faces = 2) |
| tuple | bottom_patch = blocks.create_patch_nb_faces(name = 'bottom', nb_faces = 1) |
| tuple | outlet_patch = blocks.create_patch_nb_faces(name = 'outlet', nb_faces = 4) |
| tuple | mesh = domain.create_component('Mesh', 'cf3.mesh.Mesh') |
| tuple | make_par_data = domain.create_component('MakeParData', 'cf3.solver.actions.ParallelDataToFields') |
| tuple | load_balancer = domain.create_component('LoadBalancer', 'cf3.mesh.actions.LoadBalance') |
| tuple block_nodes = blocks.create_blocks(6) |
Definition at line 52 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple block_subdivs = blocks.create_block_subdivisions() |
Definition at line 62 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple blocks = domain.create_component('model', 'cf3.mesh.BlockMesh.BlockArrays') |
Definition at line 35 of file atest-blockmesh-backstep2d-zoltan.py.
| float bottom_grading = 0.2 |
Definition at line 24 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple bottom_patch = blocks.create_patch_nb_faces(name = 'bottom', nb_faces = 1) |
Definition at line 93 of file atest-blockmesh-backstep2d-zoltan.py.
| float channel_height = 5.2e-3 |
Definition at line 20 of file atest-blockmesh-backstep2d-zoltan.py.
| int channel_length = 150 |
Definition at line 21 of file atest-blockmesh-backstep2d-zoltan.py.
| float channel_x_grading = 1.5 |
Definition at line 26 of file atest-blockmesh-backstep2d-zoltan.py.
| int channel_x_segs = 180 |
Definition at line 30 of file atest-blockmesh-backstep2d-zoltan.py.
| int channel_y_segs = 9 |
Definition at line 31 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple domain = root.create_component('Domain', 'cf3.mesh.Domain') |
Definition at line 33 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple env = cf.Core.environment() |
Definition at line 8 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple gradings = blocks.create_block_gradings() |
Definition at line 70 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple inlet_patch = blocks.create_patch_nb_faces(name = 'inlet', nb_faces = 2) |
Definition at line 78 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple load_balancer = domain.create_component('LoadBalancer', 'cf3.mesh.actions.LoadBalance') |
Definition at line 116 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple make_par_data = domain.create_component('MakeParData', 'cf3.solver.actions.ParallelDataToFields') |
Definition at line 110 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple mesh = domain.create_component('Mesh', 'cf3.mesh.Mesh') |
Definition at line 105 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple outlet_patch = blocks.create_patch_nb_faces(name = 'outlet', nb_faces = 4) |
Definition at line 96 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple points = blocks.create_points(dimensions = 2, nb_points = 13) |
Definition at line 37 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple root = cf.Core.root() |
Definition at line 7 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple step_front = blocks.create_patch_nb_faces(name = 'step_front', nb_faces = 2) |
Definition at line 85 of file atest-blockmesh-backstep2d-zoltan.py.
| float step_height = 4.9e-3 |
Definition at line 19 of file atest-blockmesh-backstep2d-zoltan.py.
| int step_length = 10 |
Definition at line 18 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple step_top = blocks.create_patch_nb_faces(name = 'step_top', nb_faces = 1) |
Definition at line 82 of file atest-blockmesh-backstep2d-zoltan.py.
| float step_x_grading = 0.8 |
Definition at line 25 of file atest-blockmesh-backstep2d-zoltan.py.
| int step_x_segs = 20 |
Definition at line 28 of file atest-blockmesh-backstep2d-zoltan.py.
| int step_y_segs = 11 |
Definition at line 29 of file atest-blockmesh-backstep2d-zoltan.py.
| float top_grading = 0.2 |
Definition at line 23 of file atest-blockmesh-backstep2d-zoltan.py.
| tuple top_patch = blocks.create_patch_nb_faces(name = 'top', nb_faces = 2) |
Definition at line 89 of file atest-blockmesh-backstep2d-zoltan.py.
| int x_parts = 4 |
Definition at line 14 of file atest-blockmesh-backstep2d-zoltan.py.
| int y_parts = 2 |
Definition at line 15 of file atest-blockmesh-backstep2d-zoltan.py.
| list y_segs = [int(math.ceil(step_y_segs/2.)), int(math.floor(step_y_segs/2.)), int(math.floor(channel_y_segs/2.)), int(math.ceil(channel_y_segs/2.))] |
Definition at line 61 of file atest-blockmesh-backstep2d-zoltan.py.
1.8.9.1
|
Send comments to: COOLFluiD Web Admin |