00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 subroutine psmile_write_3d_int(unit &
00012 ,var &
00013 ,domain &
00014 ,a &
00015 ,a_shape &
00016 ,v_shape &
00017 ,time &
00018 ,time_used &
00019 ,id_blockid &
00020 ,block_used &
00021 ,ierror)
00022
00023
00024
00025 use psmile
00026 #ifdef __PSMILE_WITH_IO
00027 implicit none
00028 include 'prism.inc'
00029
00030
00031
00032 integer,intent(in) :: unit
00033 Type(fieldtype),intent(in) :: var
00034 Type(domain2D),intent(inout) :: domain
00035 integer,intent(in) :: a_shape(2,*)
00036 integer,intent(in) :: v_shape(2,*)
00037 integer, intent(inout) :: a(a_shape(1,1):a_shape(2,1),
00038 a_shape(1,2):a_shape(2,2),
00039 a_shape(1,3):a_shape(2,3))
00040 double precision, intent(in):: time
00041 logical,intent(in) :: time_used
00042 integer,intent(in):: id_blockid
00043 logical,intent(in):: block_used
00044
00045
00046
00047
00048 integer, intent(out) :: ierror
00049
00050
00051
00052 double precision,allocatable :: atmp(:,:,:)
00053 integer::ierrp(2)
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070 character(len=len_cvs_string),save :: mcvs =
00071 '$Id: psmile_write_3d_int.F90 2325 2010-04-21 15:00:07Z valcke $'
00072
00073 ierror=0
00074
00075 #ifdef VERBOSE
00076 print*,trim(ch_id),' : psmile_write_3d_int: start'
00077 print*,trim(ch_id),' : psmile_write_3d_int: size',size(a)
00078 call psmile_flushstd
00079 #endif
00080
00081
00082 allocate(atmp(a_shape(1,1):a_shape(2,1) &
00083 ,a_shape(1,2):a_shape(2,2) &
00084 ,a_shape(1,3):a_shape(2,3)),stat=ierror)
00085
00086 if ( ierror /= 0 ) then
00087 ierrp (1) = 1
00088 ierror = PRISM_Error_Alloc
00089 call psmile_error ( ierror, 'atmp', ierrp, 1, __FILE__, __LINE__ )
00090 return
00091 endif
00092
00093 atmp=a
00094
00095 if(block_used) then
00096 if(id_blockid.le.0) then
00097 ierror = PRISM_Error_Internal
00098 call psmile_error ( ierror, 'id_blockid <= 0! ', &
00099 ierrp, 0, __FILE__, __LINE__ )
00100 endif
00101
00102 if(time_used) then
00103 call mpp_write(unit,var,domain,atmp(v_shape(1,1):v_shape(2,1) &
00104 ,v_shape(1,2):v_shape(2,2) &
00105 ,v_shape(1,3):v_shape(2,3)) &
00106 ,tstamp=time,blockid=id_blockid)
00107 else
00108 call mpp_write( unit,var,domain,atmp(v_shape(1,1):v_shape(2,1) &
00109 ,v_shape(1,2):v_shape(2,2) &
00110 ,v_shape(1,3):v_shape(2,3))&
00111 ,blockid=id_blockid)
00112 endif
00113 else
00114 if(time_used) then
00115 call mpp_write(unit,var,domain,atmp(v_shape(1,1):v_shape(2,1) &
00116 ,v_shape(1,2):v_shape(2,2) &
00117 ,v_shape(1,3):v_shape(2,3)) &
00118 ,tstamp=time)
00119 else
00120 call mpp_write( unit,var,domain,atmp(v_shape(1,1):v_shape(2,1) &
00121 ,v_shape(1,2):v_shape(2,2) &
00122 ,v_shape(1,3):v_shape(2,3)))
00123 endif
00124 endif
00125
00126 deallocate(atmp,stat=ierror)
00127
00128 if ( ierror /= 0 ) then
00129 ierrp (1) = 1
00130 ierror = PRISM_Error_Alloc
00131 call psmile_error ( ierror, 'deallocate(atmp)', ierrp, 1, __FILE__ &
00132 , __LINE__ )
00133 return
00134 endif
00135 #ifdef __PSMILE_IO_SYNC
00136 call mpp_flush(unit)
00137 #endif
00138
00139
00140 #ifdef VERBOSE
00141 print*,trim(ch_id),' : psmile_write_3d_int: end'
00142 call psmile_flushstd
00143
00144 #endif
00145 #endif
00146 end subroutine psmile_write_3d_int