psmile_trans_loc2glob_gauss2.F90
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 subroutine psmile_trans_loc2glob_gauss2 (grid_id, &
00013 ibuf, len_item, nloc, ierror)
00014
00015
00016
00017 use PRISM_constants
00018 use PSMILe, dummy_interface => PSMILe_trans_loc2glob_gauss2
00019 use psmile_grid_reduced_gauss, only : psmile_gauss_local_1d_to_3d
00020
00021 Implicit none
00022
00023
00024
00025 Integer, Intent (In) :: grid_id
00026
00027
00028
00029 Integer, Intent (In) :: nloc
00030
00031
00032
00033 Integer, Intent (In) :: len_item
00034
00035
00036
00037
00038
00039 Integer, Intent (InOut) :: ibuf (len_item, nloc)
00040
00041
00042
00043
00044
00045
00046
00047 Integer, Intent (Out) :: ierror
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076 Character(len=len_cvs_string), save :: mycvs =
00077 '$Id: psmile_trans_loc2glob_gauss2.F90,v 1.1.2.6 2009/02/11 10:43:43 redler Exp $'
00078
00079
00080
00081
00082
00083 #ifdef VERBOSE
00084 print 9990, trim(ch_id)
00085
00086 call psmile_flushstd
00087 #endif /* VERBOSE */
00088
00089 ierror = 0
00090
00091 ibuf(1:3,:) = psmile_gauss_local_1d_to_3d (grid_id, ibuf(1,:), nloc)
00092
00093
00094
00095 #ifdef VERBOSE
00096 print 9980, trim(ch_id)
00097
00098 call psmile_flushstd
00099 #endif /* VERBOSE */
00100
00101
00102
00103 9990 format (1x, a, ': psmile_trans_loc2glob_gauss2')
00104 9980 format (1x, a, ': psmile_trans_loc2glob_gauss2: eof')
00105
00106 end subroutine psmile_trans_loc2glob_gauss2