Ticket #486: test_script

File test_script, 376 bytes (added by warrick, 6 years ago)

Run forward model and show azimuth of input and output files

Line 
1#!/bin/bash
2
3$ROPP_ROOT/ifort12/bin/ropp_fm_bg2ro_1d EPS-SG_SummerTestOrbit_GNSS_3profs.bg.nc -f -o result.nc > /dev/null 2>&1
4
5# without f 'forward model only, no gradient calculation'
6$ROPP_ROOT/ifort12/bin/ropp_fm_bg2ro_1d EPS-SG_SummerTestOrbit_GNSS_3profs.bg.nc -o result_without_f.nc > /dev/null 2>&1
7
8echo '' ;for i in *.nc ; do echo $i ; ncks -H -v azimuth $i ; done