1 | PROGRAM test_client |
---|
2 | |
---|
3 | USE xios |
---|
4 | USE mod_wait |
---|
5 | IMPLICIT NONE |
---|
6 | INCLUDE "mpif.h" |
---|
7 | INTEGER :: rank |
---|
8 | INTEGER :: size |
---|
9 | INTEGER :: ierr |
---|
10 | |
---|
11 | CHARACTER(len=*),PARAMETER :: id="client" |
---|
12 | INTEGER :: comm |
---|
13 | TYPE(xios_duration) :: dtime |
---|
14 | CHARACTER(len=20) :: dtime_str |
---|
15 | TYPE(xios_date) :: date |
---|
16 | CHARACTER(len=20) :: date_str |
---|
17 | CHARACTER(len=15) :: calendar_type |
---|
18 | TYPE(xios_context) :: ctx_hdl |
---|
19 | INTEGER,PARAMETER :: ni_glo=100 |
---|
20 | INTEGER,PARAMETER :: nj_glo=100 |
---|
21 | INTEGER,PARAMETER :: llm=5 |
---|
22 | DOUBLE PRECISION :: lval(llm)=1, scalar = 5 |
---|
23 | TYPE(xios_field) :: field_hdl |
---|
24 | TYPE(xios_fieldgroup) :: fieldgroup_hdl |
---|
25 | TYPE(xios_file) :: file_hdl |
---|
26 | LOGICAL :: ok |
---|
27 | |
---|
28 | DOUBLE PRECISION,DIMENSION(ni_glo,nj_glo) :: lon_glo,lat_glo |
---|
29 | DOUBLE PRECISION :: field_A_glo(ni_glo,nj_glo,llm) |
---|
30 | DOUBLE PRECISION,ALLOCATABLE :: lon(:,:),lat(:,:),field_A(:,:,:), lonvalue(:,:), axisValue(:), field_domain(:,:) ; |
---|
31 | INTEGER :: ni,ibegin,iend,nj,jbegin,jend |
---|
32 | INTEGER :: i,j,l,ts,n |
---|
33 | |
---|
34 | !!! MPI Initialization |
---|
35 | |
---|
36 | CALL MPI_INIT(ierr) |
---|
37 | |
---|
38 | CALL init_wait |
---|
39 | |
---|
40 | !!! XIOS Initialization (get the local communicator) |
---|
41 | |
---|
42 | CALL xios_initialize(id,return_comm=comm) |
---|
43 | |
---|
44 | CALL MPI_COMM_RANK(comm,rank,ierr) |
---|
45 | CALL MPI_COMM_SIZE(comm,size,ierr) |
---|
46 | |
---|
47 | DO j=1,nj_glo |
---|
48 | DO i=1,ni_glo |
---|
49 | lon_glo(i,j)=(i-1)+(j-1)*ni_glo |
---|
50 | lat_glo(i,j)=1000+(i-1)+(j-1)*ni_glo |
---|
51 | DO l=1,llm |
---|
52 | field_A_glo(i,j,l)=(i-1)+(j-1)*ni_glo*100+10000*l |
---|
53 | ENDDO |
---|
54 | ENDDO |
---|
55 | ENDDO |
---|
56 | ni=ni_glo ; ibegin=0 |
---|
57 | |
---|
58 | jbegin=0 |
---|
59 | DO n=0,size-1 |
---|
60 | nj=nj_glo/size |
---|
61 | IF (n<MOD(nj_glo,size)) nj=nj+1 |
---|
62 | IF (n==rank) exit |
---|
63 | jbegin=jbegin+nj |
---|
64 | ENDDO |
---|
65 | |
---|
66 | iend=ibegin+ni-1 ; jend=jbegin+nj-1 |
---|
67 | |
---|
68 | ALLOCATE(lon(ni,nj),lat(ni,nj),field_A(0:ni+1,-1:nj+2,llm),lonvalue(ni,nj), axisValue(nj_glo), field_domain(0:ni+1,-1:nj+2)) |
---|
69 | lon(:,:)=lon_glo(ibegin+1:iend+1,jbegin+1:jend+1) |
---|
70 | lat(:,:)=lat_glo(ibegin+1:iend+1,jbegin+1:jend+1) |
---|
71 | field_A(1:ni,1:nj,:)=field_A_glo(ibegin+1:iend+1,jbegin+1:jend+1,:) |
---|
72 | field_domain(1:ni,1:nj) = field_A_glo(ibegin+1:iend+1,jbegin+1:jend+1,1) |
---|
73 | axisValue(1:nj_glo)=field_A_glo(1,1:nj_glo,1); |
---|
74 | |
---|
75 | CALL xios_context_initialize("test",comm) |
---|
76 | CALL xios_get_handle("test",ctx_hdl) |
---|
77 | CALL xios_set_current_context(ctx_hdl) |
---|
78 | |
---|
79 | CALL xios_get_calendar_type(calendar_type) |
---|
80 | PRINT *, "calendar_type = ", calendar_type |
---|
81 | |
---|
82 | ! CALL xios_set_axis_attr("axis_A",n_glo=nj_glo ,value=axisValue, n=nj, begin=jbegin) ; |
---|
83 | CALL xios_set_axis_attr("axis_A",n_glo=llm ,value=lval) ; |
---|
84 | CALL xios_set_domain_attr("domain_A",ni_glo=ni_glo, nj_glo=nj_glo, ibegin=ibegin, ni=ni,jbegin=jbegin,nj=nj,type='curvilinear') |
---|
85 | CALL xios_set_domain_attr("domain_A",data_dim=2, data_ibegin=-1, data_ni=ni+2, data_jbegin=-2, data_nj=nj+4) |
---|
86 | CALL xios_set_domain_attr("domain_A",lonvalue_2D=lon,latvalue_2D=lat) |
---|
87 | CALL xios_set_fieldgroup_attr("field_definition",enabled=.TRUE.) |
---|
88 | |
---|
89 | !CALL xios_get_handle("field_definition",fieldgroup_hdl) |
---|
90 | !CALL xios_add_child(fieldgroup_hdl,field_hdl,"field_B") |
---|
91 | !CALL xios_set_attr(field_hdl,field_ref="field_A",name="field_B") |
---|
92 | |
---|
93 | !CALL xios_get_handle("output",file_hdl) |
---|
94 | !CALL xios_add_child(file_hdl,field_hdl) |
---|
95 | !CALL xios_set_attr(field_hdl,field_ref="field_A_zoom",name="field_C") |
---|
96 | |
---|
97 | dtime%second = 3600 |
---|
98 | CALL xios_set_timestep(dtime) |
---|
99 | |
---|
100 | ! The calendar is created as soon as the calendar type is defined. This way |
---|
101 | ! calendar operations can be used before the context definition is closed |
---|
102 | CALL xios_get_time_origin(date) |
---|
103 | PRINT *, "--> year length = ", xios_get_year_length_in_seconds(date%year) |
---|
104 | PRINT *, "--> day length = ", xios_get_day_length_in_seconds() |
---|
105 | CALL xios_date_convert_to_string(date, date_str) |
---|
106 | PRINT *, "time_origin = ", date_str |
---|
107 | PRINT *, "xios_date_get_second_of_year(time_origin) = ", xios_date_get_second_of_year(date) |
---|
108 | PRINT *, "xios_date_get_day_of_year(time_origin) = ", xios_date_get_day_of_year(date) |
---|
109 | PRINT *, "xios_date_get_fraction_of_year(time_origin) = ", xios_date_get_fraction_of_year(date) |
---|
110 | PRINT *, "xios_date_get_second_of_day(time_origin) = ", xios_date_get_second_of_day(date) |
---|
111 | PRINT *, "xios_date_get_fraction_of_day(time_origin) = ", xios_date_get_fraction_of_day(date) |
---|
112 | dtime%timestep = 1 |
---|
113 | dtime = 0.5 * dtime |
---|
114 | CALL xios_duration_convert_to_string(dtime, dtime_str) |
---|
115 | PRINT *, "duration = ", dtime_str |
---|
116 | date = date + 3 * (dtime + dtime) |
---|
117 | CALL xios_date_convert_to_string(date, date_str) |
---|
118 | PRINT *, "date = time_origin + 3 * (duration + duration) = ", date_str |
---|
119 | PRINT *, "xios_date_convert_to_seconds(date) = ", xios_date_convert_to_seconds(date) |
---|
120 | PRINT *, "xios_date_convert_to_seconds(date - 2.5h) = ", xios_date_convert_to_seconds(date - 2.5 * xios_hour) |
---|
121 | |
---|
122 | ni=0 ; lonvalue(:,:)=0; |
---|
123 | CALL xios_get_domain_attr("domain_A",ni=ni,lonvalue_2D=lonvalue) |
---|
124 | |
---|
125 | print *,"ni",ni |
---|
126 | print *,"lonvalue",lonvalue; |
---|
127 | |
---|
128 | CALL xios_is_defined_field_attr("field_A",enabled=ok) |
---|
129 | PRINT *,"field_A : attribute enabled is defined ? ",ok |
---|
130 | CALL xios_close_context_definition() |
---|
131 | |
---|
132 | PRINT*,"field field_A is active ? ",xios_field_is_active("field_A") |
---|
133 | ! CALL xios_recv_field("field", scalar) |
---|
134 | DO ts=1,24 |
---|
135 | CALL xios_update_calendar(ts) |
---|
136 | CALL xios_send_field("field_A",field_A) |
---|
137 | CALL xios_send_field("field_B",field_A) |
---|
138 | CALL xios_send_field("field_C",field_A) |
---|
139 | ! CALL xios_send_field("field_Axis",axisValue) |
---|
140 | ! CALL xios_send_field("field_Axis",lval) |
---|
141 | ! CALL xios_send_field("field_Domain",field_domain) |
---|
142 | ! CALL xios_send_field("field_Scalar",scalar) |
---|
143 | CALL wait_us(5000) ; |
---|
144 | ENDDO |
---|
145 | |
---|
146 | CALL xios_context_finalize() |
---|
147 | |
---|
148 | DEALLOCATE(lon, lat, field_A, lonvalue) |
---|
149 | |
---|
150 | CALL MPI_COMM_FREE(comm, ierr) |
---|
151 | |
---|
152 | CALL xios_finalize() |
---|
153 | |
---|
154 | CALL MPI_FINALIZE(ierr) |
---|
155 | |
---|
156 | END PROGRAM test_client |
---|
157 | |
---|
158 | |
---|
159 | |
---|
160 | |
---|
161 | |
---|