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 confifuration. More... | |
tuple | domain = model.create_domain() |
tuple | physics = model.create_physics('cf3.UFEM.NavierStokesPhysics') |
tuple | solver = model.create_solver('cf3.UFEM.Solver') |
tuple | ic = solver.create_initial_conditions() |
tuple | scalaradv = solver.add_iteration_solver('cf3.UFEM.ScalarAdvection') |
tuple | heatcond = solver.add_iteration_solver('cf3.UFEM.HeatConductionSteady') |
tuple | nstokes = solver.add_unsteady_solver('cf3.UFEM.NavierStokes') |
tuple | blocks = domain.create_component('blocks', 'cf3.mesh.BlockMesh.BlockArrays') |
tuple | points = blocks.create_points(dimensions = 2, nb_points = 14) |
tuple | block_nodes = blocks.create_blocks(7) |
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 = 'solid_bottom', 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') |
tuple | variables = physics.get_child('VariableManager') |
list | u_in = [1., 0.] |
list | u_wall = [0., 0.] |
int | Tin = 10 |
int | Twall = 0 |
tuple | bc = nstokes.get_child('BoundaryConditions') |
tuple | bc_wall_temp = bc.create_bc_action(region_name = 'region_bnd_fluid_solid', builder_name = 'cf3.UFEM.BCHoldValue') |
tuple | heat_coupling = bc.create_bc_action(region_name = 'region_bnd_fluid_solid', builder_name = 'cf3.UFEM.HeatCouplingFlux') |
tuple | time = model.create_time() |
float | final_end_time = 0.02 |
float | save_interval = 0.01 |
int | current_end_time = 0 |
int | iteration = 0 |
tuple | probe0 = solver.add_probe(name = 'Probe', parent = scalaradv, dict = mesh.children['cf3.mesh.LagrangeP0']) |
tuple bc = nstokes.get_child('BoundaryConditions') |
Definition at line 147 of file atest-conjugate-heat-flatplate.py.
tuple bc_wall_temp = bc.create_bc_action(region_name = 'region_bnd_fluid_solid', builder_name = 'cf3.UFEM.BCHoldValue') |
Definition at line 160 of file atest-conjugate-heat-flatplate.py.
tuple block_nodes = blocks.create_blocks(7) |
Definition at line 57 of file atest-conjugate-heat-flatplate.py.
tuple block_subdivs = blocks.create_block_subdivisions() |
Definition at line 68 of file atest-conjugate-heat-flatplate.py.
tuple blocks = domain.create_component('blocks', 'cf3.mesh.BlockMesh.BlockArrays') |
Definition at line 37 of file atest-conjugate-heat-flatplate.py.
tuple bottom_patch1 = blocks.create_patch_nb_faces(name = 'solid_bottom', nb_faces = 1) |
Definition at line 92 of file atest-conjugate-heat-flatplate.py.
tuple bottom_patch2 = blocks.create_patch_nb_faces(name = 'bottom2', nb_faces = 1) |
Definition at line 101 of file atest-conjugate-heat-flatplate.py.
tuple bottom_patch3 = blocks.create_patch_nb_faces(name = 'bottom3', nb_faces = 1) |
Definition at line 104 of file atest-conjugate-heat-flatplate.py.
int current_end_time = 0 |
Definition at line 182 of file atest-conjugate-heat-flatplate.py.
tuple domain = model.create_domain() |
Definition at line 19 of file atest-conjugate-heat-flatplate.py.
tuple env = cf.Core.environment() |
Definition at line 8 of file atest-conjugate-heat-flatplate.py.
float final_end_time = 0.02 |
Definition at line 180 of file atest-conjugate-heat-flatplate.py.
tuple gradings = blocks.create_block_gradings() |
Definition at line 78 of file atest-conjugate-heat-flatplate.py.
tuple heat_coupling = bc.create_bc_action(region_name = 'region_bnd_fluid_solid', builder_name = 'cf3.UFEM.HeatCouplingFlux') |
Definition at line 169 of file atest-conjugate-heat-flatplate.py.
tuple heatcond = solver.add_iteration_solver('cf3.UFEM.HeatConductionSteady') |
Definition at line 31 of file atest-conjugate-heat-flatplate.py.
tuple ic = solver.create_initial_conditions() |
Definition at line 24 of file atest-conjugate-heat-flatplate.py.
tuple inlet_patch = blocks.create_patch_nb_faces(name = 'inlet', nb_faces = 2) |
Definition at line 88 of file atest-conjugate-heat-flatplate.py.
int iteration = 0 |
Definition at line 183 of file atest-conjugate-heat-flatplate.py.
tuple mesh = domain.create_component('Mesh', 'cf3.mesh.Mesh') |
Definition at line 118 of file atest-conjugate-heat-flatplate.py.
tuple model = root.create_component('NavierStokes', 'cf3.solver.ModelUnsteady') |
Global confifuration.
Definition at line 18 of file atest-conjugate-heat-flatplate.py.
tuple nstokes = solver.add_unsteady_solver('cf3.UFEM.NavierStokes') |
Definition at line 34 of file atest-conjugate-heat-flatplate.py.
tuple outlet_patch = blocks.create_patch_nb_faces(name = 'outlet', nb_faces = 2) |
Definition at line 107 of file atest-conjugate-heat-flatplate.py.
tuple physics = model.create_physics('cf3.UFEM.NavierStokesPhysics') |
Definition at line 20 of file atest-conjugate-heat-flatplate.py.
tuple points = blocks.create_points(dimensions = 2, nb_points = 14) |
Definition at line 38 of file atest-conjugate-heat-flatplate.py.
tuple probe0 = solver.add_probe(name = 'Probe', parent = scalaradv, dict = mesh.children['cf3.mesh.LagrangeP0']) |
Definition at line 188 of file atest-conjugate-heat-flatplate.py.
tuple root = cf.Core.root() |
Definition at line 7 of file atest-conjugate-heat-flatplate.py.
float save_interval = 0.01 |
Definition at line 181 of file atest-conjugate-heat-flatplate.py.
tuple scalaradv = solver.add_iteration_solver('cf3.UFEM.ScalarAdvection') |
Definition at line 27 of file atest-conjugate-heat-flatplate.py.
tuple solver = model.create_solver('cf3.UFEM.Solver') |
Definition at line 21 of file atest-conjugate-heat-flatplate.py.
tuple time = model.create_time() |
Definition at line 175 of file atest-conjugate-heat-flatplate.py.
int Tin = 10 |
Definition at line 133 of file atest-conjugate-heat-flatplate.py.
tuple top_patch = blocks.create_patch_nb_faces(name = 'top', nb_faces = 3) |
Definition at line 111 of file atest-conjugate-heat-flatplate.py.
int Twall = 0 |
Definition at line 134 of file atest-conjugate-heat-flatplate.py.
list u_in = [1., 0.] |
Definition at line 131 of file atest-conjugate-heat-flatplate.py.
list u_wall = [0., 0.] |
Definition at line 132 of file atest-conjugate-heat-flatplate.py.
tuple variables = physics.get_child('VariableManager') |
Definition at line 122 of file atest-conjugate-heat-flatplate.py.
Send comments to: COOLFluiD Web Admin |