#author("2020-05-20T19:32:54+09:00","default:Miyashita","Miyashita") #author("2020-05-20T19:33:30+09:00","default:Miyashita","Miyashita") *座標系ごとの注意点 [#sf464957] 計算に採用する座標系によって setrun.py の設定が異なる点をメモ. *** clawdata.capa_index [#icaf8bc9] #codeprettify{{ clawdata.capa_index = 2 # 2 for spherical lon-lat clawdata.capa_index = 0 # 0 for cartesian x-y }} *** amrdata.aux_type [#d99f945d] #codeprettify{{ amrdata.aux_type = ['center','capacity','yleft'] # for lon-lat amrdata.aux_type = ['center','center','yleft'] # for x-y amrdata.aux_type = ['center','center','yleft'] # for x-y }} *** geo_data.coordinate_system [#na398ece] #codeprettify{{ geo_data.coordinate_system = 2 # lon-lat geo_data.coordinate_system = 1 # x-y geo_data.coordinate_system = 2 # for lon-lat geo_data.coordinate_system = 1 # for x-y }} *** geo_data.coriolis_forcing [#m64c29f5] #codeprettify{{ geo_data.coriolis_forcing = True # lon-lat geo_data.coriolis_forcing = False # X-Y geo_data.coriolis_forcing = True # for lon-lat geo_data.coriolis_forcing = False # for X-Y }}