Commit 71bb209a authored by thopri's avatar thopri
Browse files

added salinity check

parent 129c5043
...@@ -505,7 +505,8 @@ def process_bdy(setup_filepath=0, mask_gui=False): ...@@ -505,7 +505,8 @@ def process_bdy(setup_filepath=0, mask_gui=False):
if settings['use_cmems'] == True: if settings['use_cmems'] == True:
logger.info('using CMEMS variable names......') logger.info('using CMEMS variable names......')
if ln_tra: if ln_tra:
var_in['t'].extend(['thetao']) # ,'so']) var_in['t'].extend(['thetao'])
var_in['t'].extend(['so'])
if ln_dyn2d or ln_dyn3d: if ln_dyn2d or ln_dyn3d:
var_in['u'].extend(['uo']) var_in['u'].extend(['uo'])
......
...@@ -557,7 +557,6 @@ def write_parameter(fileout, grid_h,grid_z,params): ...@@ -557,7 +557,6 @@ def write_parameter(fileout, grid_h,grid_z,params):
dataset.createDimension('z', nz) dataset.createDimension('z', nz)
dataset.createDimension('time', nt) dataset.createDimension('time', nt)
# Create Variables # Create Variables
longitude = dataset.createVariable('longitude', np.float32, ('y', 'x')) longitude = dataset.createVariable('longitude', np.float32, ('y', 'x'))
latitude = dataset.createVariable('latitude', np.float32, ('y', 'x')) latitude = dataset.createVariable('latitude', np.float32, ('y', 'x'))
...@@ -577,11 +576,12 @@ def write_parameter(fileout, grid_h,grid_z,params): ...@@ -577,11 +576,12 @@ def write_parameter(fileout, grid_h,grid_z,params):
latitude[:, :] = grid_h['latt'].T latitude[:, :] = grid_h['latt'].T
depth[:] = grid_z['dept_1d'] depth[:] = grid_z['dept_1d']
time_counter[:] = np.linspace(587340.00,588060.00,31) time_counter[:] = np.linspace(587340.00,588060.00,31)
parameter = dataset.createVariable(str(params['name']), np.float64, ('time','z', 'y', 'x')) for key in params:
parameter.units, parameter.long_name = str(params['units']), str(params['longname']) parameter = dataset.createVariable(str(params[key]['name']), np.float64, ('time','z', 'y', 'x'))
value_fill = np.ones(np.shape(grid_z['e3t'])) parameter.units, parameter.long_name = str(params[key]['units']), str(params[key]['longname'])
value_fill = value_fill*params['const_value'] value_fill = np.ones(np.shape(grid_z['e3t']))
parameter[:, :, :] = value_fill.T value_fill = value_fill*params[key]['const_value']
parameter[:, :, :] = value_fill.T
# Close off pointer # Close off pointer
dataset.close() dataset.close()
......
...@@ -105,7 +105,9 @@ def _main(): ...@@ -105,7 +105,9 @@ def _main():
# write boundary files (constant parameters) # write boundary files (constant parameters)
out_fname = 'unit_tests/test_data/output_boundary_T.nc' out_fname = 'unit_tests/test_data/output_boundary_T.nc'
params = {'name':'thetao','const_value':15.0,'longname':'temperature','units':'degreesC'} params = {'param1': {'name':'thetao','const_value':15.0,'longname':'temperature','units':'degreesC'},
'param2': {'name':'so','const_value':35.0,'longname':'salinity','units':'PSU'}
}
boundary = gt.write_parameter(out_fname,grid_h1,grid_z1,params) boundary = gt.write_parameter(out_fname,grid_h1,grid_z1,params)
if boundary == 0: if boundary == 0:
print('Success!') print('Success!')
......
...@@ -33,16 +33,16 @@ def test_temp(): ...@@ -33,16 +33,16 @@ def test_temp():
assert abs(temp_[temp_ != 0.0].max() - 15) <= 0.001 assert abs(temp_[temp_ != 0.0].max() - 15) <= 0.001
assert abs(temp_[temp_ != 0.0].min() - 15) <= 0.001 assert abs(temp_[temp_ != 0.0].min() - 15) <= 0.001
#def test_salinty(): def test_salinty():
# test_files = glob.glob('unit_tests/test_outputs/unit_test*') test_files = glob.glob('unit_tests/test_outputs/unit_test*')
# for t in test_files: for t in test_files:
# results = Dataset(t) # open results results = Dataset(t) # open results
# sal = results['so'][:] sal = results['so'][:]
# results.close() results.close()
# sal_ = np.ma.masked_array(sal,sal == -32767.0) sal_ = np.ma.masked_array(sal,sal == -32767.0)
# assert abs(sal_[sal_!=0.0].mean() - 35) <= 0.001 assert abs(sal_[sal_!=0.0].mean() - 35) <= 0.001
# assert abs(sal_[sal_ != 0.0].max() - 35) <= 0.001 assert abs(sal_[sal_ != 0.0].max() - 35) <= 0.001
# assert abs(sal_[sal_ != 0.0].min() - 35) <= 0.001 assert abs(sal_[sal_ != 0.0].min() - 35) <= 0.001
# clean up test I/O # clean up test I/O
files = glob.glob('unit_tests/test_outputs/*') files = glob.glob('unit_tests/test_outputs/*')
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment