/[MITgcm]/MITgcm/verification/advect_xz/code/ini_theta.F
ViewVC logotype

Contents of /MITgcm/verification/advect_xz/code/ini_theta.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Fri Sep 28 02:28:10 2001 UTC (22 years, 6 months ago) by adcroft
Branch: MAIN
CVS Tags: checkpoint46b_post, checkpoint48f_post, checkpoint46k_post, checkpoint51k_post, checkpoint53f_post, checkpoint47j_post, checkpoint54a_pre, checkpoint55c_post, checkpoint53b_pre, checkpoint48d_pre, checkpoint51l_post, checkpoint51j_post, branch-exfmods-tag, checkpoint47e_post, checkpoint44h_pre, checkpoint47i_post, checkpoint52l_pre, checkpoint48i_post, checkpoint52e_pre, release1_p12, release1_p13, release1_p10, release1_p16, checkpoint57g_pre, checkpoint52j_post, release1_p15, release1_p11, checkpoint47f_post, checkpoint48d_post, checkpoint51o_pre, checkpoint57f_post, checkpoint46j_post, checkpoint47c_post, checkpoint50e_post, checkpoint52e_post, checkpoint50c_post, checkpoint51n_pre, checkpoint47d_post, checkpoint44e_post, checkpoint44f_pre, checkpoint47a_post, checkpoint46c_post, checkpoint57b_post, checkpoint46f_post, checkpoint46l_pre, checkpoint53c_post, checkpoint53d_post, checkpoint57f_pre, checkpoint46a_post, checkpoint48a_post, checkpoint55d_pre, checkpoint46n_post, checkpoint51f_pre, release1_beta1, checkpoint46d_pre, checkpoint57g_post, checkpoint48e_post, checkpoint46e_post, checkpoint57a_post, checkpoint48h_post, checkpoint55j_post, checkpoint56b_post, checkpoint50c_pre, release1-branch_tutorials, release1_p14, checkpoint44g_post, branchpoint-genmake2, checkpoint46h_pre, checkpoint44h_post, checkpoint46l_post, checkpoint52j_pre, checkpoint54a_post, checkpoint46e_pre, checkpoint43a-release1mods, branch-netcdf, checkpoint50d_pre, checkpoint55h_post, checkpoint45d_post, checkpoint51r_post, checkpoint52b_pre, checkpoint52n_post, checkpoint54b_post, checkpoint46j_pre, checkpoint45b_post, checkpoint46b_pre, checkpoint51i_post, checkpoint57e_post, checkpoint54d_post, checkpoint47h_post, checkpoint48c_post, chkpt44a_pre, release1-branch-end, checkpoint56c_post, checkpoint54e_post, release1_final_v1, checkpoint55b_post, checkpoint51e_post, checkpoint51b_post, checkpoint46, checkpoint51l_pre, checkpoint52m_post, checkpoint51c_post, checkpoint55, checkpoint53a_post, checkpoint55a_post, checkpoint57c_pre, checkpoint44, checkpoint45, checkpoint48, checkpoint49, checkpoint44f_post, checkpoint47b_post, checkpoint53b_post, checkpoint55g_post, checkpoint51o_post, checkpoint48g_post, release1_p17, checkpoint57d_post, release1_b1, checkpoint44b_post, checkpoint55f_post, checkpoint51q_post, checkpoint52l_post, checkpoint52k_post, chkpt44d_post, checkpoint57a_pre, checkpoint54, checkpoint57, checkpoint56, checkpoint51, checkpoint50, checkpoint53, checkpoint52, release1_p8, release1_p9, checkpoint50d_post, checkpoint52d_post, checkpoint46m_post, checkpoint46g_pre, release1_p2, release1_p3, release1_p4, checkpoint51b_pre, release1_p6, checkpoint52a_post, checkpoint47g_post, checkpoint52b_post, checkpoint53g_post, chkpt44a_post, checkpoint52f_post, checkpoint44b_pre, checkpoint52c_post, release1_p1, checkpoint51h_pre, checkpoint46a_pre, checkpoint50g_post, checkpoint45c_post, release1_p5, checkpoint44e_pre, checkpoint51g_post, ecco_c52_e35, chkpt44c_pre, release1_p7, checkpoint54f_post, checkpoint51f_post, checkpoint46d_post, checkpoint48b_post, checkpoint50b_post, eckpoint57e_pre, checkpoint46g_post, release1_p13_pre, release1_p12_pre, checkpoint45a_post, checkpoint57c_post, checkpoint50f_post, checkpoint50a_post, checkpoint46c_pre, checkpoint50f_pre, checkpoint52a_pre, checkpoint43, checkpoint47d_pre, checkpoint51d_post, checkpoint48c_pre, release1-branch_branchpoint, checkpoint46i_post, checkpoint51m_post, checkpoint51t_post, checkpoint53d_pre, checkpoint47, checkpoint55e_post, checkpoint54c_post, chkpt44c_post, checkpoint52i_post, checkpoint51a_post, checkpoint46h_post, checkpoint50e_pre, checkpoint50i_post, checkpoint51p_post, checkpoint51n_post, release1_chkpt44d_post, checkpoint55i_post, checkpoint51i_pre, checkpoint52i_pre, checkpoint51u_post, checkpoint52h_pre, checkpoint52f_pre, checkpoint50b_pre, checkpoint56a_post, checkpoint51s_post, checkpoint55d_post
Branch point for: netcdf-sm0, branch-genmake2, branch-nonh, release1_coupled, tg2-branch, release1_final, checkpoint51n_branch, release1-branch, release1, release1_50yr, branch-exfmods-curt
Adding test of advection schemes with lopped cells. 2-D x-z

1 C $Header: /mymods/advect_xz/code/ini_theta.F,v 1.1 2001/02/07 14:38:05$
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CStartOfInterface
7 SUBROUTINE INI_THETA( myThid )
8 C /==========================================================\
9 C | SUBROUTINE INI_THETA |
10 C | o Set model initial temperature field. |
11 C |==========================================================|
12 C | There are several options for setting the initial |
13 C | temperature file |
14 C | 1. Inline code |
15 C | 2. Vertical profile ( uniform T in X and Y ) |
16 C | 3. Three-dimensional data from a file. For example from |
17 C | Levitus or from a checkpoint file from a previous |
18 C | integration. |
19 C | In addition to setting the temperature field we also |
20 C | set the initial temperature tendency term here. |
21 C \==========================================================/
22 IMPLICIT NONE
23
24 C === Global variables ===
25 #include "SIZE.h"
26 #include "EEPARAMS.h"
27 #include "PARAMS.h"
28 #include "GRID.h"
29 #include "DYNVARS.h"
30
31 C == Routine arguments ==
32 C myThid - Number of this instance of INI_THETA
33 INTEGER myThid
34 CEndOfInterface
35
36 C == Local variables ==
37 C iC, jC - Center of domain
38 C iD, jD - Disitance from domain center.
39 C rad - Radius of initial patch
40 C rD - Radial displacement of point I,J
41 C iG, jG - Global coordinate index
42 C bi,bj - Loop counters
43 C I,J,K
44 INTEGER iC, jC, iD, jD
45 INTEGER iG, jG
46 INTEGER bi, bj
47 INTEGER I, J, K, localWarnings
48 _RL rad, rD
49 CHARACTER*(MAX_LEN_MBUF) msgBuf
50
51 _BARRIER
52
53 IF ( hydrogThetaFile .EQ. ' ' ) THEN
54 C-- Example 1
55 C-- Initialise temperature field to a circular patch.
56 iC = Nx/2
57 jC = Ny/2
58 rad = MIN(Ny/8,Nx/8)
59 DO bj = myByLo(myThid), myByHi(myThid)
60 DO bi = myBxLo(myThid), myBxHi(myThid)
61 DO K=1,Nr
62 DO J=1,sNy
63 DO I=1,sNx
64 rD=sqrt( (XC(i,j,bi,bj)-40.E3)**2
65 & +(YC(i,j,bi,bj)-40.E3)**2
66 & +(RC(k)+50.E3)**2 )
67 theta(i,j,k,bi,bj)=exp(-0.5*( rD/20.E3 )**2 )
68 ENDDO
69 ENDDO
70 ENDDO
71 ENDDO
72 ENDDO
73 ELSE
74 _BEGIN_MASTER( myThid )
75 CALL READ_FLD_XYZ_RL( hydrogThetaFile, ' ', theta, 0, myThid )
76 _END_MASTER(myThid)
77 ENDIF
78 C Set initial tendency terms
79 localWarnings=0
80 DO bj = myByLo(myThid), myByHi(myThid)
81 DO bi = myBxLo(myThid), myBxHi(myThid)
82 DO K=1,Nr
83 DO J=1,sNy
84 DO I=1,sNx
85 gt (I,J,K,bi,bj) = 0. _d 0
86 gtNM1(I,J,K,bi,bj) = 0. _d 0
87 IF (hFacC(I,J,K,bi,bj).EQ.0) theta(I,J,K,bi,bj) = 0.
88 IF (hFacC(I,J,K,bi,bj).NE.0.AND.theta(I,J,K,bi,bj).EQ.0.)
89 & THEN
90 localWarnings=localWarnings+1
91 ENDIF
92 ENDDO
93 ENDDO
94 ENDDO
95 ENDDO
96 ENDDO
97 IF (localWarnings.NE.0) THEN
98 WRITE(msgBuf,'(A,A)')
99 & 'S/R INI_THETA: theta = 0 identically. If this is intentional',
100 & 'you will need to edit ini_theta.F to avoid this safety check'
101 CALL PRINT_ERROR( msgBuf , myThid)
102 STOP 'ABNORMAL END: S/R INI_THETA'
103 ENDIF
104 C
105 _EXCH_XYZ_R8(theta , myThid )
106 _EXCH_XYZ_R8(gt , myThid )
107 _EXCH_XYZ_R8(gtNM1 , myThid )
108
109 CALL PLOT_FIELD_XYZRL( theta, 'Initial Temperature' ,
110 & Nr, 1, myThid )
111
112 RETURN
113 END

  ViewVC Help
Powered by ViewVC 1.1.22