コード例 #1
0
ファイル: grid.py プロジェクト: relaxar/mcidasv
def horizontalAdvection(param, u, v):
    """ horizontal advection """
    return DerivedGridFactory.createHorizontalAdvection(param, u, v)
コード例 #2
0
ファイル: grid.py プロジェクト: relaxar/mcidasv
def horizontalAdvection(param, vector):
    """ horizontal advection """
    u = DerivedGridFactory.getUComponent(vector)
    v = DerivedGridFactory.getVComponent(vector)
    return DerivedGridFactory.createHorizontalAdvection(param, u, v)
コード例 #3
0
def horizontalAdvection(param, u, v):
  """ horizontal advection """
  return DerivedGridFactory.createHorizontalAdvection(param,u,v)