UPP (upp-srw-2.2.0)
Loading...
Searching...
No Matches
io_int_stubs.f
1! Stubs version of wrf io spi subroutines
2!
3!--- get_dom_ti_real
4SUBROUTINE ext_int_get_dom_ti_real ( DataHandle,Element, Data, Count, Outcount, Status )
5 INTEGER , INTENT(IN) :: DataHandle
6 CHARACTER*(*) :: Element
7 REAL , INTENT(OUT) :: Data(*)
8 INTEGER , INTENT(IN) :: Count
9 INTEGER , INTENT(OUT) :: Outcount
10 INTEGER , INTENT(OUT) :: Status
11
12RETURN
13END SUBROUTINE ext_int_get_dom_ti_real
14
15
16SUBROUTINE ext_int_get_dom_ti_integer ( DataHandle,Element, Data, Count, Outcount, Status )
17
18RETURN
19END SUBROUTINE ext_int_get_dom_ti_integer
20
21
22!--- get_dom_ti_char
23SUBROUTINE ext_int_get_dom_ti_char ( DataHandle,Element, Data, Status )
24
25RETURN
26END SUBROUTINE ext_int_get_dom_ti_char
27
28
29!--- get_var_info
30SUBROUTINE ext_int_get_var_info ( DataHandle , VarName , NDim , MemoryOrder , Stagger , &
31 DomainStart , DomainEnd , WrfType, Status )
32
33RETURN
34END SUBROUTINE ext_int_get_var_info
35
36
37!--- read_field
38SUBROUTINE ext_int_read_field ( DataHandle , DateStr , VarName , Field , FieldType , Comm , IOComm, &
39 DomainDesc , MemoryOrder , Stagger , DimNames , &
40 DomainStart , DomainEnd , &
41 MemoryStart , MemoryEnd , &
42 PatchStart , PatchEnd , &
43 Status )
44 RETURN
45
46END SUBROUTINE ext_int_read_field
47
48
49!--- close
50SUBROUTINE ext_int_ioclose ( DataHandle, Status )
51
52 RETURN
53END SUBROUTINE ext_int_ioclose
54
55
56!--- initialize
57SUBROUTINE ext_int_ioinit( SysDepInfo, Status )
58
59END SUBROUTINE ext_int_ioinit
60
61
62
63!--- open_for_read
64SUBROUTINE ext_int_open_for_read ( FileName , Comm_compute, Comm_io, SysDepInfo, &
65 DataHandle , Status )
66
67 RETURN
68END SUBROUTINE ext_int_open_for_read
69
70
71
72SUBROUTINE int_get_ti_header_c ( hdrbuf, hdrbufsize, n, itypesize, typesize, &
73 DataHandle, Data, Count, code )
74
75RETURN
76END SUBROUTINE int_get_ti_header_c
77
78
79! NETCDF STUBS
80SUBROUTINE ext_ncd_ioinit(SysDepInfo, Status)
81
82RETURN
83END SUBROUTINE ext_ncd_ioinit
84
85
86subroutine ext_ncd_open_for_read(DatasetName, Comm1, Comm2, SysDepInfo, DataHandle, Status)
87
88RETURN
89END subroutine ext_ncd_open_for_read
90
91
92subroutine ext_ncd_get_dom_ti_integer(DataHandle,Element,Data,Count,OutCount,Status)
93
94RETURN
95END subroutine ext_ncd_get_dom_ti_integer
96
97
98subroutine ext_ncd_ioclose(DataHandle, Status)
99
100 return
101end subroutine ext_ncd_ioclose
102
103
104subroutine ext_ncd_get_dom_ti_char(DataHandle,Element,Data,Status)
105
106 return
107end subroutine ext_ncd_get_dom_ti_char
108
109
110subroutine ext_ncd_get_dom_ti_real(DataHandle,Element,Data,Count,Status)
111
112 return
113end subroutine ext_ncd_get_dom_ti_real
114
115
116subroutine ext_ncd_get_var_info(DataHandle,Name,NDim,MemoryOrder, &
117 Stagger,DomainStart,DomainEnd,WrfType,Status)
118
119 return
120end subroutine ext_ncd_get_var_info
121
122
123subroutine ext_ncd_read_field(DataHandle,DateStr,Var,Field,FieldType,Comm, &
124 IOComm, DomainDesc, MemoryOrdIn, Stagger, DimNames, &
125 DomainStart,DomainEnd,MemoryStart,MemoryEnd,PatchStart,PatchEnd,Status)
126
127 return
128end subroutine ext_ncd_read_field
129
130
131subroutine wrf_error_fatal(massage)
132
133stop
134end subroutine wrf_error_fatal
135
136
137subroutine int_gen_ti_header_c ( hdrbuf, hdrbufsize, itypesize, typesize, &
138 DataHandle, Data, Count, code )
139 RETURN
140END SUBROUTINE int_gen_ti_header_c
141
142
143
144
145
146
147