Cloned SEACAS for EXODUS library with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.0 KiB

2 years ago
netcdf test {
dimensions:
len_name = 256 ;
time_step = UNLIMITED ; // (10 currently)
num_dim = 1 ;
num_qa_rec = 2 ;
four = 4 ;
len_string = 33 ;
num_info = 3 ;
len_line = 81 ;
num_glo_var = 1 ;
variables:
float time_whole(time_step) ;
char coor_names(num_dim, len_name) ;
char qa_records(num_qa_rec, four, len_string) ;
char info_records(num_info, len_line) ;
char name_glo_var(num_glo_var, len_name) ;
float vals_glo_var(time_step, num_glo_var) ;
// global attributes:
:file_size = 1 ;
:maximum_name_length = 32 ;
:title = "This is a test" ;
data:
time_whole = 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1 ;
coor_names =
"xcoor" ;
qa_records =
"TESTWT",
"testwt",
"07/07/93",
"15:41:33",
"",
" ",
"",
" " ;
info_records =
"This is the first information record.",
"",
" " ;
name_glo_var =
"glo_vars" ;
vals_glo_var =
0.02,
0.04,
0.06,
0.08,
0.1,
0.12,
0.14,
0.16,
0.18,
0.2 ;
}