forked from wrf-model/WRF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen_model_data_ord.c
40 lines (36 loc) · 1.01 KB
/
gen_model_data_ord.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef _WIN32
# include <strings.h>
#endif
#include "protos.h"
#include "registry.h"
#include "data.h"
int
gen_model_data_ord ( char * dirname )
{
FILE * fp ;
char fname[NAMELEN] ;
char * fn = "model_data_order.inc" ;
int i ;
if ( dirname == NULL ) return(1) ;
if ( strlen(dirname) > 0 ) { sprintf(fname,"%s/%s",dirname,fn) ; }
else { sprintf(fname,"%s",fn) ; }
if ((fp = fopen( fname , "w" )) == NULL ) return(1) ;
print_warning(fp,fname) ;
fprintf(fp,"INTEGER , PARAMETER :: model_data_order = DATA_ORDER_") ;
for ( i = 0 ; i < 3 ; i++ )
{
switch ( model_order[i] )
{
case ( COORD_X ) : fprintf(fp,"X") ; break ;
case ( COORD_Y ) : fprintf(fp,"Y") ; break ;
case ( COORD_Z ) : fprintf(fp,"Z") ; break ;
default : fprintf(stderr,"Model data order ambiguous. Is there a dimspec for all three coordinate axes?\n") ; break ;
}
}
fprintf(fp,"\n") ;
close_the_file( fp ) ;
return(0) ;
}