00001 subroutine postprocessor
00002
00003 use global
00004
00005
00006
00007 implicit none
00008
00009 integer myP,myD
00010
00011
00012
00013
00014 print*,'|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|'
00015 print*,'POST-PROCESSOR STARTS'
00016 print*,'|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|'
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 do myP=1,myModel%numberOfPhysics
00027
00028 currentPhysics=myP
00029
00030
00031 do myD=1,myModel%physics(currentPhysics)%numberOfDomains
00032
00033
00034 currentDomain=myD
00035
00036
00037 call tecFD
00038
00039
00040 end do
00041
00042
00043
00044 end do
00045
00046
00047 print*,'|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|'
00048 print*,'POST-PROCESSOR ENDS'
00049 print*,'|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|+|'
00050
00051
00052
00053
00054
00055
00056
00057
00058 end subroutine postprocessor