Exemple #1
0
def horizontalAdvection(param, u, v):
    """ horizontal advection """
    return DerivedGridFactory.createHorizontalAdvection(param, u, v)
Exemple #2
0
def horizontalAdvection(param, vector):
    """ horizontal advection """
    u = DerivedGridFactory.getUComponent(vector)
    v = DerivedGridFactory.getVComponent(vector)
    return DerivedGridFactory.createHorizontalAdvection(param, u, v)
Exemple #3
0
def horizontalAdvection(param, u, v):
  """ horizontal advection """
  return DerivedGridFactory.createHorizontalAdvection(param,u,v)