Exemplo n.º 1
0
def readSIMPLEControls(mesh):
    from Foam import get_proper_function
    fun = get_proper_function(
        "Foam.finiteVolume.cfdTools.general.include.readSIMPLEControls_impl",
        "readSIMPLEControls")

    return fun(mesh)
Exemplo n.º 2
0
def compressibleCourantNo(mesh, phi, rho, runTime):
    from Foam import get_proper_function
    fun = get_proper_function(
        "Foam.finiteVolume.cfdTools.compressible.compressibleCourantNo_impl",
        "compressibleCourantNo")

    return fun(mesh, phi, rho, runTime)
Exemplo n.º 3
0
def setInitialDeltaT(*args):
    from Foam import get_proper_function
    fun = get_proper_function(
        "Foam.finiteVolume.cfdTools.general.include.setInitialDeltaT_impl",
        "setInitialDeltaT")

    return fun(*args)
Exemplo n.º 4
0
def createTime( args ) :
    from Foam import get_proper_function
    fun = get_proper_function( "Foam.OpenFOAM.include.createTime_impl",
                               "createTime" )
    return fun( args )
Exemplo n.º 5
0
def compressibleCourantNo( mesh, phi, rho, runTime ):
    from Foam import get_proper_function
    fun = get_proper_function( "Foam.finiteVolume.cfdTools.compressible.compressibleCourantNo_impl",
                               "compressibleCourantNo" )
    
    return fun( mesh, phi, rho, runTime )
Exemplo n.º 6
0
def readSIMPLEControls( mesh ):
    from Foam import get_proper_function
    fun = get_proper_function( "Foam.finiteVolume.cfdTools.general.include.readSIMPLEControls_impl",
                               "readSIMPLEControls" )
                      
    return fun( mesh )
Exemplo n.º 7
0
def setInitialDeltaT( *args ):
    from Foam import get_proper_function
    fun = get_proper_function( "Foam.finiteVolume.cfdTools.general.include.setInitialDeltaT_impl",
                               "setInitialDeltaT" )
    
    return fun( *args )        
Exemplo n.º 8
0
def readTimeControls( runTime ):
    from Foam import get_proper_function
    fun = get_proper_function( "Foam.finiteVolume.cfdTools.general.include.readTimeControls_impl",
                               "readTimeControls" )
    return fun( runTime )
Exemplo n.º 9
0
def CourantNo( mesh, phi, runTime ):
    from Foam import get_proper_function
    fun = get_proper_function( "Foam.finiteVolume.cfdTools.general.include.CourantNo_impl",
                               "CourantNo" )
    return fun( mesh, phi, runTime )
Exemplo n.º 10
0
def createDynamicFvMesh(runTime):
    from Foam import get_proper_function
    fun = get_proper_function("Foam.dynamicFvMesh.createDynamicFvMesh_impl",
                              "createDynamicFvMesh")
    return fun(runTime)
Exemplo n.º 11
0
def createTime(args):
    from Foam import get_proper_function
    fun = get_proper_function("Foam.OpenFOAM.include.createTime_impl",
                              "createTime")
    return fun(args)
Exemplo n.º 12
0
def CourantNo(mesh, phi, runTime):
    from Foam import get_proper_function
    fun = get_proper_function(
        "Foam.finiteVolume.cfdTools.general.include.CourantNo_impl",
        "CourantNo")
    return fun(mesh, phi, runTime)
Exemplo n.º 13
0
def createDynamicFvMesh( runTime ):
    from Foam import get_proper_function
    fun = get_proper_function( "Foam.dynamicFvMesh.createDynamicFvMesh_impl",
                               "createDynamicFvMesh" )
    return fun( runTime )
Exemplo n.º 14
0
def readTimeControls( runTime ):
    from Foam import get_proper_function
    fun = get_proper_function( "Foam.finiteVolume.cfdTools.general.include.readTimeControls_impl",
                               "readTimeControls" )
    return fun( runTime )