Writing data in NetCDF file from multiple processors

327 Views Asked by At

I have a simulation on meteorological field, my total domain (nx * ny * nz) is divided into number of processors (in my case 100). I have to send the job file created by local machine to the cluster for execution.

I want to write the Fortran routine for writing the output data from each processor into a NetCDF file.

Following is my code snippet, in user_init.f90

stat = NF90_CREATE('/home/sachin/e_output.nc', NF90_NETCDF4, ncid_user, comm = comm2d,info = MPI_INFO_NULL)

stat = NF90_DEF_DIM( ncid_user, i, NF90_UNLIMITED, i_id )
stat = NF90_DEF_DIM( ncid_user, j, NF90_UNLIMITED, j_id )
stat = NF90_DEF_DIM( ncid_user, k, NF90_UNLIMITED, k_id )

e_id=i_id(/i_id,j_id,k_id/)

stat = NF90_DEF_VAR( ncid_user, ene, NF90_INT, e_id, ev_id )

From other file I am writing the output data into the NetCDF file

stat1 = nf90_put_var(ncid_user, ev_id, pt, start = (/ 1 + myid*INT(procs1), 1 + myid*INT(procs1), 1 /),count = (/ 152,120,120 /))
0

There are 0 best solutions below