-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcase_dependent.f90.tmp
More file actions
622 lines (510 loc) · 17.2 KB
/
case_dependent.f90.tmp
File metadata and controls
622 lines (510 loc) · 17.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
MODULE case_dependent
!
! Author: Jacopo Canton
! E-mail: jcanton@mech.kth.se
! Last revision: 13/6/2014
!
! This module contains routines which are case dependent and can be adapted
! to suit the needs of a particular flow analysis.
! The idea is to have here ALL what is case dependent so that it's more
! difficult to make stupid memory mistakes to the core of the program.
!
USE global_variables
USE miscellaneous_subroutines
USE axisym_boundary_values
USE Gauss_points
USE Gauss_points_L
USE vorticity_stream
USE vtk_plot
!------------------------------------------------------------------------------
IMPLICIT NONE
!***torus
REAL(KIND=8), DIMENSION(:,:), ALLOCATABLE, SAVE :: rr0, rr0_L
REAL(KIND=8), SAVE :: deform0, deform1
INTEGER, SAVE :: maxRloc
LOGICAL, SAVE :: rr0init=.FALSE.
CONTAINS
!------------------------------------------------------------------------------
SUBROUTINE case_problemset()
!
! Author: Jacopo Canton
! E-mail: jcanton@mech.kth.se
! Last revision: 13/6/2014
!
! This routine is executed after reading the 'problem_data.in' file
IMPLICIT NONE
! input variables
! output variables
! local variables
REAL(KIND=8) :: Rt, Rp=0.5d0
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_problemset'
!***torus
WRITE(*,*) ' curvature = ', flow_parameters(1)
WRITE(*,*) ' R_t = ', Rp/flow_parameters(1)
IF (.NOT.rr0init) THEN
! save initial mesh with curvature 1
ALLOCATE( rr0 (SIZE(rr,1), SIZE(rr,2)) )
ALLOCATE( rr0_L(SIZE(rr_L,1),SIZE(rr_L,2)) )
! the initial mesh has curvature = 1
rr0 = rr - Rp
rr0_L = rr_L - Rp
maxRloc = MAXLOC(rr0(2,:),1)
deform0 = rr0(2,maxRloc) - MAX( MAXVAL(rr0(2,1:maxRloc-1)), MAXVAL(rr0(2,maxRloc+1 : SIZE(rr0,1))) )
#if DEBUG > 1
WRITE(*,*) '*** check'
WRITE(*,*) ' maxRloc = ', maxRloc
WRITE(*,*) ' deform0 = ', deform0
!WRITE(*,*) ' deform = ', MAXVAL(rr(2,:)) - MAXVAL( (/ rr(2,1:maxRloc-1), rr(2,maxRloc+1 : SIZE(rr,1)) /) )
#endif
rr0init = .TRUE.
ENDIF
rr_L(2,:) = rr0_L(2,:) + Rp/flow_parameters(1)
rr(2,:) = rr0(2,:) + Rp/flow_parameters(1)
CALL Gauss_gen_L(np_L, me, nps_L, mes, jj_L, jjs_L, rr_L)
CALL Gauss_gen (np, me, nps, mes, jj, jjs, rr)
deform1 = rr(2,maxRloc) - MAX( MAXVAL(rr(2,1:maxRloc-1)), MAXVAL(rr(2,maxRloc+1 : SIZE(rr,1))) )
#if DEBUG > 1
WRITE(*,*) '*** check'
WRITE(*,*) ' maxR = ', rr(2,maxRloc)
WRITE(*,*) ' minR = ', MINVAL(rr(2,:))
WRITE(*,*) ' deform1 = ', deform1
#endif
WRITE(*,*) ' done: case_problemset'
WRITE(*,*)
END SUBROUTINE case_problemset
!------------------------------------------------------------------------------
SUBROUTINE case_preprocess()
!
! Author:
! E-mail:
! Last revision:
!
! This routine is executed before the analysis starts but after the program
! initialization
IMPLICIT NONE
! input variables
! output variables
! local variables
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_preprocess'
WRITE(*,*) ' done: case_preprocess'
WRITE(*,*)
END SUBROUTINE case_preprocess
!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SUBROUTINE case_newton_iteprocess(ite, continuation_converged)
!
! Author: Jacopo Canton
! E-mail: jcanton@mech.kth.se
! Last revision: 13/6/2014
!
! This routine is called inside the nonlinear solver (Newton's method) before
! the generation of the right-hand side and Jacobian matrix
IMPLICIT NONE
! input variables
INTEGER, INTENT(IN) :: ite
! output variables
INTEGER :: continuation_converged
! local variables
REAL(KIND=8) :: Ub, Ub_tol
REAL(KIND=8), DIMENSION(velCmpnnts) :: u_avg
REAL(KIND=8), SAVE :: fn1, Ubn1, fn2, Ubn2
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_newton_iteprocess'
!***torus
Ub = 1d0
Ub_tol = 1e-3
!
CALL computeFieldAverage(u0, u_avg)
fn1 = volumeForcing(3,2)
Ubn1 = u_avg(3)
IF ( ABS(Ub-Ubn1) > Ub_tol ) THEN
continuation_converged=0
WRITE(*,*) ' tol NOT satisfied'
ELSE
continuation_converged=1
WRITE(*,*) ' tol satisfied'
ENDIF
! WRITE(*,*) ' Average velocity field'
! WRITE(*,*) ' avg(u_z) = ', u_avg(1)
! WRITE(*,*) ' avg(u_r) = ', u_avg(2)
WRITE(*,*) ' avg(u_t) = ', u_avg(3)
IF (ite>1) THEN
! secant method
volumeForcing(3,2) = fn1 - (Ubn1-Ub)*(fn1-fn2)/(Ubn1-Ubn2)
! write(*,*) 'secant', fn1, Ubn1, fn2, Ubn2
ELSE
!volumeForcing(3,2) = fn1 + SIGN(1d0,Ub - Ubn1)*fn1/10d0
volumeForcing(3,2) = fn1 + (Ub - Ubn1)*fn1
! write(*,*) 'stupid', fn1, Ubn1, fn2, Ubn2
ENDIF
fn2 = fn1
Ubn2 = Ubn1
WRITE(*,*) ' force = ', volumeForcing(3,2)
WRITE(*,*) ' done: case_newton_iteprocess'
WRITE(*,*)
END SUBROUTINE case_newton_iteprocess
!------------------------------------------------------------------------------
SUBROUTINE case_newton_postprocess()
!
! Author:
! E-mail:
! Last revision:
!
! This routine is called after Newton's method has reached convergence
IMPLICIT NONE
! input variables
! output variables
! local variables
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_newton_postprocess'
WRITE(*,*) ' done: case_newton_postprocess'
WRITE(*,*)
END SUBROUTINE case_newton_postprocess
!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SUBROUTINE case_postprocess_analysis0()
!
! Author: Jacopo Canton
! E-mail: jcanton@mech.kth.se
! Last revision: 18/12/2014
!
! This routine is executed after analysis 0:
! Stokes solution
IMPLICIT NONE
! input variables
! output variables
! local variables
INTEGER :: fid = 23
REAL(KIND=8), DIMENSION(velCmpnnts) :: u_avg
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_postprocess_analysis0'
!***torus
CALL computeFieldAverage(uu, u_avg)
WRITE(*,*)
WRITE(*,*) '--> Average velocity field'
WRITE(*,*) ' avg(u_z) = ', u_avg(1)
WRITE(*,*) ' avg(u_r) = ', u_avg(2)
WRITE(*,*) ' avg(u_t) = ', u_avg(3)
OPEN(UNIT= fid, FILE='./locaOut/stokesParamsUb.dat', ACCESS= 'APPEND')
WRITE(fid,*) Re, flow_parameters(1), flow_parameters(2), flow_parameters(3), &
u_avg(1), u_avg(2), u_avg(3), volumeForcing(3,2)
CLOSE(fid)
! computation of vorticity and stream function
! as the boundary conditions are not imposed in a general form (yet),
! this part needs to be modified according to the geometry and
! BCs of the problem being solved
ALLOCATE (Dir_psi(number_of_sides))
ALLOCATE (zz(np), psi(np))
Dir_psi = (/.TRUE./)
CALL compute_vorticity_stream (jj, jjs, js, uu, rr, sides, Axis, Dir_psi, zz, psi)
CALL vtk_plot_scalar_P2 (rr, jj, zz, trim(p_in%plot_directory) // 'stokesVorticity.vtk')
CALL vtk_plot_scalar_P2 (rr, jj, psi, trim(p_in%plot_directory) // 'stokesStream.vtk')
DEALLOCATE(Dir_psi)
DEALLOCATE(zz, psi)
WRITE(*,*) ' done: case_postprocess_analysis0'
WRITE(*,*)
END SUBROUTINE case_postprocess_analysis0
!------------------------------------------------------------------------------
SUBROUTINE case_postprocess_analysis1()
!
! Author: Jacopo Canton
! E-mail: jcanton@mech.kth.se
! Last revision: 13/6/2014
!
! This routine is executed after analysis 1:
! Steady state computation
IMPLICIT NONE
! input variables
! output variables
! local variables
INTEGER :: fid = 23
REAL(KIND=8), DIMENSION(velCmpnnts) :: u_avg
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_postprocess_analysis1'
!***torus
CALL computeFieldAverage(uu, u_avg)
WRITE(*,*)
WRITE(*,*) '--> Average velocity field'
WRITE(*,*) ' avg(u_z) = ', u_avg(1)
WRITE(*,*) ' avg(u_r) = ', u_avg(2)
WRITE(*,*) ' avg(u_t) = ', u_avg(3)
OPEN(UNIT= fid, FILE='./locaOut/paramsUb.dat', ACCESS= 'APPEND')
WRITE(fid,*) Re, flow_parameters(1), flow_parameters(2), flow_parameters(3), &
u_avg(1), u_avg(2), u_avg(3), volumeForcing(3,2)
CLOSE(fid)
! computation of vorticity and stream function
! as the boundary conditions are not imposed in a general form (yet),
! this part needs to be modified according to the geometry and
! BCs of the problem being solved
ALLOCATE (Dir_psi(number_of_sides))
ALLOCATE (zz(np), psi(np))
Dir_psi = (/.TRUE./)
CALL compute_vorticity_stream (jj, jjs, js, uu, rr, sides, Axis, Dir_psi, zz, psi)
CALL vtk_plot_scalar_P2 (rr, jj, zz, trim(p_in%plot_directory) // 'steadyStateVorticity.vtk')
CALL vtk_plot_scalar_P2 (rr, jj, psi, trim(p_in%plot_directory) // 'steadyStateStream.vtk')
DEALLOCATE(Dir_psi)
DEALLOCATE(zz, psi)
WRITE(*,*) ' done: case_postprocess_analysis1'
WRITE(*,*)
END SUBROUTINE case_postprocess_analysis1
!------------------------------------------------------------------------------
SUBROUTINE case_postprocess_analysis3()
!
! Author:
! E-mail:
! Last revision:
!
! This routine is executed after analysis 3:
! Eigenvalue computation on an already computed base flow
IMPLICIT NONE
! input variables
! output variables
! local variables
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_postprocess_analysis3'
WRITE(*,*) ' done: case_postprocess_analysis3'
WRITE(*,*)
END SUBROUTINE case_postprocess_analysis3
!------------------------------------------------------------------------------
SUBROUTINE case_postprocess_analysis4()
!
! Author:
! E-mail:
! Last revision:
!
! This routine is executed after analysis 4:
! Structural sensitivity analysis on an already computed base flow, and already
! computed both direct and adjoint eigenvectors
IMPLICIT NONE
! input variables
! output variables
! local variables
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_postprocess_analysis4'
WRITE(*,*) ' done: case_postprocess_analysis4'
WRITE(*,*)
END SUBROUTINE case_postprocess_analysis4
!------------------------------------------------------------------------------
SUBROUTINE case_postprocess_analysis5()
!
! Author:
! E-mail:
! Last revision:
!
! This routine is executed after analysis 5:
! Transient growth computation on an already computed base flow
IMPLICIT NONE
! input variables
! output variables
! local variables
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_postprocess_analysis5'
WRITE(*,*) ' done: case_postprocess_analysis5'
WRITE(*,*)
END SUBROUTINE case_postprocess_analysis5
!------------------------------------------------------------------------------
SUBROUTINE case_postprocess_analysis6()
!
! Author:
! E-mail:
! Last revision:
!
! This routine is executed after analysis 6
! DNS
IMPLICIT NONE
! input variables
! output variables
! local variables
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_postprocess_analysis6'
WRITE(*,*) ' done: case_postprocess_analysis6'
WRITE(*,*)
END SUBROUTINE case_postprocess_analysis6
!------------------------------------------------------------------------------
SUBROUTINE case_postprocess_analysis7()
!
! Author:
! E-mail:
! Last revision:
!
! This routine is executed after analysis 7
! Evolution of optimal linear perturbations an already computed base flow
IMPLICIT NONE
! input variables
! output variables
! local variables
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_postprocess_analysis7'
WRITE(*,*) ' done: case_postprocess_analysis7'
WRITE(*,*)
END SUBROUTINE case_postprocess_analysis7
!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SUBROUTINE case_loca_solution_output(x_vec, filenm)
!
! Author: Jacopo Canton
! E-mail: jcanton@mech.kth.se
! Last revision: 24/11/2014
!
! This routine is executed when LOCA has converged on a steady solution
! and saves the results
IMPLICIT NONE
! input variables
REAL(KIND=8), DIMENSION(Nx) :: x_vec
CHARACTER(*) :: filenm
! output variables
! local variables
REAL(KIND=8), DIMENSION(velCmpnnts,np) :: u_zzpsi
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_loca_solution_output'
!***torus
! ! computation of vorticity and stream function
! ! as the boundary conditions are not imposed in a general form (yet),
! ! this part needs to be modified according to the geometry and
! ! BCs of the problem being solved
! CALL extract(x_vec, u_zzpsi)
! ALLOCATE (Dir_psi(number_of_sides))
! ALLOCATE (zz(np), psi(np))
! Dir_psi = (/.TRUE./)
! CALL compute_vorticity_stream (jj, jjs, js, u_zzpsi, rr, sides, Axis, Dir_psi, zz, psi)
! CALL vtk_plot_scalar_P2 (rr, jj, zz, trim(p_in%plot_directory)//'locaContVorticity'//trim(filenm)//'.vtk')
! CALL vtk_plot_scalar_P2 (rr, jj, psi, trim(p_in%plot_directory)//'locaContStream'//trim(filenm)//'.vtk')
! DEALLOCATE(Dir_psi)
! DEALLOCATE(zz, psi)
WRITE(*,*) ' done: case_loca_solution_output'
WRITE(*,*)
END SUBROUTINE case_loca_solution_output
!------------------------------------------------------------------------------
SUBROUTINE case_loca_paramout()
!
! Author: Jacopo Canton
! E-mail: jcanton@mech.kth.se
! Last revision: 13/6/2014
!
! This routine is executed when LOCA has converged on a steady solution
! and saves the results
IMPLICIT NONE
! input variables
! output variables
! local variables
INTEGER :: fid = 23
REAL(KIND=8), DIMENSION(velCmpnnts) :: u_avg
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_loca_paramout'
!***torus
CALL extract (xx, uu)
CALL computeFieldAverage(uu, u_avg)
! WRITE(*,*) ' Average velocity field'
! WRITE(*,*) ' avg(u_z) = ', u_avg(1)
! WRITE(*,*) ' avg(u_r) = ', u_avg(2)
WRITE(*,*) ' avg(u_t) = ', u_avg(3)
OPEN(UNIT= fid, FILE='./locaOut/paramsUb.dat', ACCESS= 'APPEND')
WRITE(fid,*) Re, flow_parameters(1), flow_parameters(2), flow_parameters(3), &
u_avg(1), u_avg(2), u_avg(3), volumeForcing(3,2)
CLOSE(fid)
WRITE(*,*) ' done: case_loca_paramout'
WRITE(*,*)
END SUBROUTINE case_loca_paramout
!------------------------------------------------------------------------------
SUBROUTINE case_loca_changeOscar(oscar)
!
! Author: Jacopo Canton
! E-mail: jcanton@mech.kth.se
! Last revision: 13/6/2014
!
! This routine is executed when LOCA needs to change parameter Oscar
IMPLICIT NONE
! input variables
REAL(KIND=8), INTENT(IN) :: oscar
! output variables
! local variables
REAL(KIND=8) :: Rt, Rp=0.5d0
REAL(KIND=8) :: deform, deformRel
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_loca_changeOscar'
!***torus
WRITE(*,*) ' old curvature = ', flow_parameters(1)
WRITE(*,*) ' old R_t = ', Rp/flow_parameters(1)
WRITE(*,*) ' new curvature = ', oscar
WRITE(*,*) ' new R_t = ', Rp/oscar
IF (.NOT.rr0init) THEN
WRITE(*,*) '*** strange Error ***'
ENDIF
rr_L(2,:) = rr0_L(2,:) + Rp/oscar
rr(2,:) = rr0(2,:) + Rp/oscar
CALL Gauss_gen_L(np_L, me, nps_L, mes, jj_L, jjs_L, rr_L)
CALL Gauss_gen (np, me, nps, mes, jj, jjs, rr)
deform = rr(2,maxRloc) - MAX( MAXVAL(rr(2,1:maxRloc-1)), MAXVAL(rr(2,maxRloc+1 : SIZE(rr,1))) )
deformRel = (deform - deform1)/deform1
#if DEBUG > 1
WRITE(*,*) '*** check'
WRITE(*,*) ' dR = ', Rp/oscar-Rp/flow_parameters(1)
WRITE(*,*) ' maxR = ', rr(2,maxRloc)
WRITE(*,*) ' minR = ', MINVAL(rr(2,:))
WRITE(*,*) ' deformRel = ', deformRel
#endif
IF ( ABS(deformRel) > 1e-6 ) THEN
WRITE(*,*) '*************************************'
WRITE(*,*) '*** WARNING: ***'
WRITE(*,*) '*** The mesh is being deformed ***'
WRITE(*,*) '*** more than the accepted tol ***'
!WRITE(*,*) '*** STOP ***'
WRITE(*,*) '*************************************'
!CALL MPI_ABORT(MPI_COMM_WORLD, mpiErrC, mpiIerr)
ENDIF
WRITE(*,*) ' done: case_loca_changeOscar'
WRITE(*,*)
END SUBROUTINE case_loca_changeOscar
!------------------------------------------------------------------------------
SUBROUTINE case_loca_changeRomeo(romeo)
!
! Author:
! E-mail:
! Last revision:
!
! This routine is executed when LOCA needs to change parameter Romeo
IMPLICIT NONE
! input variables
REAL(KIND=8), INTENT(IN) :: romeo
! output variables
! local variables
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_loca_changeRomeo'
WRITE(*,*) ' done: case_loca_changeRomeo'
WRITE(*,*)
END SUBROUTINE case_loca_changeRomeo
!------------------------------------------------------------------------------
SUBROUTINE case_loca_changeWhisky(whisky)
!
! Author:
! E-mail:
! Last revision:
!
! This routine is executed when LOCA needs to change parameter Whisky
IMPLICIT NONE
! input variables
REAL(KIND=8), INTENT(IN) :: whisky
! output variables
! local variables
! executable statements
WRITE(*,*)
WRITE(*,*) '--> call to: case_loca_changeWhisky'
WRITE(*,*) ' done: case_loca_changeWhisky'
WRITE(*,*)
END SUBROUTINE case_loca_changeWhisky
!==============================================================================
END MODULE case_dependent