~fluidity-core/fluidity/exorcised

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
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
!    Copyright (C) 2006 Imperial College London and others.
!
!    Please see the AUTHORS file in the main source directory for a full list
!    of copyright holders.
!
!    Prof. C Pain
!    Applied Modelling and Computation Group
!    Department of Earth Science and Engineering
!    Imperial College London
!
!    amcgsoftware@imperial.ac.uk
!
!    This library is free software; you can redistribute it and/or
!    modify it under the terms of the GNU Lesser General Public
!    License as published by the Free Software Foundation,
!    version 2.1 of the License.
!
!    This library is distributed in the hope that it will be useful,
!    but WITHOUT ANY WARRANTY; without even the implied warranty of
!    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
!    Lesser General Public License for more details.
!
!    You should have received a copy of the GNU Lesser General Public
!    License along with this library; if not, write to the Free Software
!    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
!    USA

#include "fdebug.h"

module fluids_module

  use AuxilaryOptions
  use MeshDiagnostics
  use signal_vars
  use spud
  use equation_of_state
  use timers
  use adapt_state_module
  use adapt_state_prescribed_module
  use FLDebug
  use sparse_tools
  use elements
  use fields
  use boundary_conditions_from_options
  use populate_state_module
  use populate_sub_state_module
  use reserve_state_module
  use vtk_interfaces
  use Diagnostic_variables
  use diagnostic_fields_new, only : &
    & calculate_diagnostic_variables_new => calculate_diagnostic_variables, &
    & check_diagnostic_dependencies
  use diagnostic_fields_wrapper
  use diagnostic_children
  use advection_diffusion_cg
  use advection_diffusion_DG
  use advection_diffusion_FV
  use field_equations_cv, only: solve_field_eqn_cv, initialise_advection_convergence, coupled_cv_field_eqn
  use vertical_extrapolation_module
  use qmesh_module
  use checkpoint
  use write_state_module
  use synthetic_bc
  use goals
  use adaptive_timestepping
  use conformity_measurement
  ! Use Solid-fluid coupling and ALE - Julian- 18-09-06
  use ale_module
  use adjacency_lists
  use multimaterial_module
  use parallel_tools
  use SolidConfiguration
  use MeshMovement
  use write_triangle
  use biology
  use foam_flow_module, only: calculate_potential_flow, calculate_foam_velocity
  use momentum_equation
  use timeloop_utilities
  use free_surface_module
  use field_priority_lists
  use boundary_conditions
  use spontaneous_potentials, only: calculate_electrical_potential
  use saturation_distribution_search_hookejeeves
  use discrete_properties_module
  use gls
  use k_epsilon
  use iceshelf_meltrate_surf_normal
  use halos
  use memory_diagnostics
  use free_surface_module
  use global_parameters, only: current_time, dt, timestep, OPTION_PATH_LEN, &
                               simulation_start_time, &
                               simulation_start_cpu_time, &
                               simulation_start_wall_time, &
                               topology_mesh_name
  use eventcounter
  use reduced_model_runtime
  use implicit_solids
  use sediment
#ifdef HAVE_HYPERLIGHT
  use hyperlight
#endif
  use multiphase_module
  use detector_parallel, only: sync_detector_coordinates, deallocate_detector_list_array


  implicit none

  private

  public :: fluids, fluids_module_check_options

  interface
    subroutine check_options
    end subroutine check_options
  end interface

contains

  SUBROUTINE FLUIDS()
    character(len = OPTION_PATH_LEN) :: filename

    INTEGER :: &
         & NTSOL,  &
         & nonlinear_iterations,  &
         & nonlinear_iterations_adapt

    REAL :: &
         & finish_time, &
         & steady_state_tolerance

    real:: nonlinear_iteration_tolerance

    !     System state wrapper.
    type(state_type), dimension(:), pointer :: state => null()
    type(state_type), dimension(:), pointer :: sub_state => null()
    type(state_type), dimension(:), allocatable :: POD_state

    type(tensor_field) :: metric_tensor
    !     Dump index
    integer :: dump_no = 0
    !     Temporary buffer for any string options which may be required.
    character(len=OPTION_PATH_LEN) :: option_buffer
    character(len=OPTION_PATH_LEN):: option_path
    REAL :: CHANGE,CHAOLD

    integer :: i, it, its

    logical :: not_to_move_det_yet = .false.

    !CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC

    !     STUFF for MEsh movement, and Solid-fluid-coupling.  ------ jem

    !     Ale mesh movement - Julian 05-02-07
    LOGICAL:: USE_ALE
    INTEGER:: fs

    !     Solid-fluid coupling - Julian 18-09-06
    !New options
    INTEGER :: ss,ph
    LOGICAL :: have_solids

    !     Turbulence modelling - JBull 24-05-11
    LOGICAL :: have_k_epsilon
    character(len=OPTION_PATH_LEN) :: keps_option_path

    ! Pointers for scalars and velocity fields
    type(scalar_field), pointer :: sfield
    type(scalar_field) :: foam_velocity_potential
    type(vector_field), pointer :: foamvel
    !CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC

    !     backward compatibility with new option structure - crgw 21/12/07
    logical::use_advdif=.true.  ! decide whether we enter advdif or not

    INTEGER :: adapt_count

    ! Absolute first thing: check that the options, if present, are valid.
    call check_options
    ewrite(1,*) "Options sanity check successful"

    call get_option("/simulation_name",filename)

    call set_simulation_start_times()
    call initialise_walltime
    timestep = 0

#ifdef HAVE_MEMORY_STATS
    ! this is to make sure the option /io/log_output/memory_diagnostics is read
    call reset_memory_logs()
#endif

    call initialise_qmesh
    call initialise_write_state


    ! Initialise sediments
    if (have_option("/material_phase[0]/sediment")) then
        call sediment_init()
    end if

    ! Initialise Hyperlight
#ifdef HAVE_HYPERLIGHT
    if (have_option("ocean_biology/lagrangian_ensemble/hyperlight")) then
       if (.not.have_option("/material_phase[0]/scalar_field::Chlorophyll")) then
          FLExit("You need Chlorophyll scalar field for Hyperlight")
       else
          call hyperlight_init()       
       end if
    end if
#else
    if (have_option("ocean_biology/lagrangian_ensemble/hyperlight")) then
       ewrite(-1,*) "Hyperlight module was selected, but not compiled."
       FLExit("Please re-compile fluidity with the --enable-hyperlight option.")
    end if
#endif

    if (have_option("/geometry/disable_geometric_data_cache")) then
       ewrite(1,*) "Disabling geometric data cache"
       cache_transform_elements=.false.
    end if

    adapt_count = 0

    ! Read state from .flml file
    call populate_state(state)

    ewrite(3,*)'before have_option test'

    if (have_option("/reduced_model/execute_reduced_model")) then
       call read_pod_basis(POD_state, state)
    else
       ! need something to pass into solve_momentum
       allocate(POD_state(1:0))
    end if

    ! Check the diagnostic field dependencies for circular dependencies
    call check_diagnostic_dependencies(state)

    default_stat%zoltan_drive_call=.false.

    ! For multiphase simulations, we have to call calculate_diagnostic_phase_volume_fraction *before*
    ! copy_to_stored(state,"Old") is called below. Otherwise, OldPhaseVolumeFraction (in the phase
    ! containing the diagnostic PhaseVolumeFraction) will be zero and 
    ! NonlinearPhaseVolumeFraction will be calculated incorrectly at t=0.
    if(option_count("/material_phase/vector_field::Velocity/prognostic") > 1) then
      call calculate_diagnostic_phase_volume_fraction(state)
    end if

   ! set the nonlinear timestepping options, needs to be before the adapt at first timestep
    call get_option('/timestepping/nonlinear_iterations',nonlinear_iterations,&
         & default=1)
    call get_option("/timestepping/nonlinear_iterations/tolerance", &
         & nonlinear_iteration_tolerance, default=0.0)
    
    if(have_option("/mesh_adaptivity/hr_adaptivity/adapt_at_first_timestep")) then

       if(have_option("/timestepping/nonlinear_iterations/nonlinear_iterations_at_adapt")) then
         call get_option('/timestepping/nonlinear_iterations/nonlinear_iterations_at_adapt',nonlinear_iterations_adapt)
         nonlinear_iterations = nonlinear_iterations_adapt
       end if

       call adapt_state_first_timestep(state)

       ! Auxilliary fields.
       call allocate_and_insert_auxilliary_fields(state)
       call copy_to_stored_values(state,"Old")
       call copy_to_stored_values(state,"Iterated")
       call relax_to_nonlinear(state)

       call enforce_discrete_properties(state)

       ! Ensure that checkpoints do not adapt at first timestep.
       call delete_option(&
            "/mesh_adaptivity/hr_adaptivity/adapt_at_first_timestep")

       ! Remove dummy field used by implicit_solids
       if (have_option("/implicit_solids")) call remove_dummy_field(state(1))
    else
       ! Auxilliary fields.
       call allocate_and_insert_auxilliary_fields(state)
       call copy_to_stored_values(state,"Old")
       call copy_to_stored_values(state,"Iterated")
       call relax_to_nonlinear(state)

       call enforce_discrete_properties(state)
    end if

   ! set the remaining timestepping options, needs to be before any diagnostics are calculated
    call get_option("/timestepping/timestep", dt)
    if(have_option("/timestepping/adaptive_timestep/at_first_timestep")) then
       call calc_cflnumber_field_based_dt(state, dt, force_calculation = .true.)
       call set_option("/timestepping/timestep", dt)
    end if

    call get_option("/timestepping/current_time", current_time)
    call get_option("/timestepping/finish_time", finish_time)

    call get_option("/timestepping/steady_state/tolerance", &
         & steady_state_tolerance, default = -666.01)

    if(use_sub_state()) then
       call populate_sub_state(state,sub_state)
    end if

    ! Calculate the number of scalar fields to solve for and their correct
    ! solve order taking into account dependencies.
    call get_ntsol(ntsol)

    call initialise_field_lists_from_options(state, ntsol)

    call check_old_code_path()

    !        Initialisation of distance to top and bottom field
    !        Currently only needed for free surface
    if (has_scalar_field(state(1), "DistanceToTop")) then
       if (.not. have_option('/geometry/ocean_boundaries')) then
          ewrite(-1,*) "There are no top and bottom boundary markers."
          FLExit("Switch on /geometry/ocean_boundaries or remove your DistanceToTop field.")
       end if
       call CalculateTopBottomDistance(state(1))
       ! Initialise the OriginalDistanceToBottom field used for wetting and drying
       if (have_option("/mesh_adaptivity/mesh_movement/free_surface/wetting_and_drying")) then
          call insert_original_distance_to_bottom(state(1))
          ! Wetting and drying only works with no poisson guess ... lets check that
          call get_option("/material_phase::water/scalar_field::Pressure/prognostic/scheme/poisson_pressure_solution", option_buffer)
          if (.not. trim(option_buffer) == "never") then 
            FLExit("Please choose 'never' under /material_phase::water/scalar_field::Pressure/prognostic/scheme/poisson_pressure_solution when using wetting and drying")
          end if
       end if
    end if

    ! move mesh according to inital free surface:
    !    top/bottom distance needs to be up-to-date before this call, after the movement
    !    they will be updated (inside the call)
    call move_mesh_free_surface(state, initialise=.true.)

    call run_diagnostics(state)

    !CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
    !     Initialise solid-fluid coupling, and ALE ----------- -Julian 17-07-2008
    have_solids=.false.
    use_ale=.false.

    !Read the amount of SolidConcentration fields
    !and save their IT numbers.
    if(have_option(trim('/imported_solids'))) then
       ss=0
       phaseloop: do ph = 1, size(state)
          write(option_buffer, '(a,i0,a)') "/material_phase[",ph-1,"]"
          if(have_option(trim(option_buffer)//"/scalar_field::SolidConcentration") &
             .and. have_option("/imported_solids")) then
             ss = ph
             have_solids=.true.
          end if
       end do phaseloop
       if(ss==0) then
          ewrite(-1,*) "You have /imported_solids on but..."
          FLExit("..couldn't find a material phase containing solid concentration.")
       end if
       EWRITE(2,*) 'solid state= ',ss
    end if

    if(have_option(trim('/mesh_adaptivity/mesh_movement/explicit_ale'))) then
       !if using ALE with two fluids, look for the prognostic Material Volume fraction field.
       !This will later be changed to be more general (i.e.: be able to do this with any field by providing
       !its name)
       use_ale=.true.
       fs=-1
       phaseloop1: do ph = 1, size(state)
          write(option_buffer, '(a,i0,a)') "/material_phase[",ph-1,"]"
          if(have_option(trim(option_buffer)//"/scalar_field::MaterialVolumeFraction/prognostic")) then
             fs = ph
          end if
       end do phaseloop1
       if (fs==-1) then
          FLExit('No prognostic MaterialVolumeFraction was defined, which is needed for ALE')
       end if
    end if
    !     end initialise solid-fluid coupling, and ALE  -Julian 17-07-2008
    !CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC

    if (have_option("/mesh_adaptivity/hr_adaptivity")) then
       call allocate(metric_tensor, extract_mesh(state(1), topology_mesh_name), "ErrorMetric")
    end if

    !     Determine the output format.
    call get_option('/io/dump_format', option_buffer)
    if(trim(option_buffer) /= "vtk") then
       ewrite(-1,*) "You must specify a dump format and it must be vtk."
       FLExit("Rejig your FLML: /io/dump_format")
    end if

    ! initialise the multimaterial fields
    call initialise_diagnostic_material_properties(state)

    call calculate_diagnostic_variables(State)
    call calculate_diagnostic_variables_new(state)
    ! This is mostly to ensure that the photosynthetic radiation
    ! has a non-zero value before the first adapt.
    if (have_option("/ocean_biology")) then
       call calculate_biology_terms(state(1))
    end if

    call initialise_diagnostics(filename, state)

    ! Initialise ice_meltrate, read constatns, allocate surface, and calculate melt rate
    if (have_option("/ocean_forcing/iceshelf_meltrate/Holland08")) then
        call melt_surf_init(state(1))
        call melt_allocate_surface(state(1))
        call melt_surf_calc(state(1))
         !BC for ice melt
          if (have_option('/ocean_forcing/iceshelf_meltrate/Holland08/calculate_boundaries')) then
            call melt_bc(state(1))
          endif
    end if
    
    ! Checkpoint at start
    if(do_checkpoint_simulation(dump_no)) call checkpoint_simulation(state, cp_no = dump_no)
    ! Dump at start
    if( &
         ! if this is not a zero timestep simulation (otherwise, there would
         ! be two identical dump files)
         & current_time < finish_time &
         ! unless explicitly disabled
         & .and. .not. have_option("/io/disable_dump_at_start") &
         & ) then
       call write_state(dump_no, state)
    end if

    call initialise_convergence(filename, state)
    call initialise_steady_state(filename, state)
    call initialise_advection_convergence(state)

    if(have_option("/io/stat/output_at_start")) call write_diagnostics(state, current_time, dt, timestep, not_to_move_det_yet=.true.)

    not_to_move_det_yet=.false.

    ! Initialise GLS
    if (have_option("/material_phase[0]/subgridscale_parameterisations/GLS/option")) then
        call gls_init(state(1))
    end if

    ! Initialise k_epsilon
    have_k_epsilon = .false.
    keps_option_path="/material_phase[0]/subgridscale_parameterisations/k-epsilon/"
    if (have_option(trim(keps_option_path))) then
        have_k_epsilon = .true.
        call keps_init(state(1))
    end if

    ! ******************************
    ! *** Start of timestep loop ***
    ! ******************************

    timestep_loop: do
       timestep = timestep + 1

       ewrite(1, *) "********************"
       ewrite(1, *) "*** NEW TIMESTEP ***"
       ewrite(1, *) "********************"
       ewrite(1, *) "Current simulation time: ", current_time
       ewrite(1, *) "Timestep number: ", timestep
       ewrite(1, *) "Timestep size (dt): ", dt
       if(.not. allfequals(dt)) then
          ewrite(-1, *) "Timestep size (dt): ", dt
          FLAbort("The timestep is not global across all processes!")
       end if

       if(simulation_completed(current_time, timestep)) exit timestep_loop

       if( &
                                ! Do not dump at the start of the simulation (this is handled by write_state call earlier)
            & current_time > simulation_start_time &
                                ! Do not dump at the end of the simulation (this is handled by later write_state call)
            & .and. current_time < finish_time &
                                ! Test write_state conditions
            & .and. do_write_state(current_time, timestep) &
            & ) then

          !CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
          ! Regular during run state dump.
          !CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC

          ! Intermediate dumps
          if(do_checkpoint_simulation(dump_no)) then
             call checkpoint_simulation(state, cp_no = dump_no)
          end if
          call write_state(dump_no, state)
       end if

       ewrite(2,*)'steady_state_tolerance,nonlinear_iterations:',steady_state_tolerance,nonlinear_iterations

       call copy_to_stored_values(state,"Old")
       if (have_option('/mesh_adaptivity/mesh_movement') .and. .not. have_option('/mesh_adaptivity/mesh_movement/free_surface')) then
          ! Coordinate isn't handled by the standard timeloop utility calls.
          ! During the nonlinear iterations of a timestep, Coordinate is
          ! evaluated at n+theta, i.e. (1-theta)*OldCoordinate+theta*IteratedCoordinate.
          ! At the end of the previous timestep however, the most up-to-date Coordinate,
          ! i.e. IteratedCoordinate, has been copied into Coordinate. This value
          ! is now used as the Coordinate at the beginning of the time step.
          ! For the free surface this is dealt with within move_mesh_free_surface() below
          call set_vector_field_in_state(state(1), "OldCoordinate", "Coordinate")
       end if

       ! this may already have been done in populate_state, but now
       ! we evaluate at the correct "shifted" time level:
       call set_boundary_conditions_values(state, shift_time=.true.)
       if(use_sub_state()) call set_boundary_conditions_values(sub_state, shift_time=.true.)

       ! evaluate prescribed fields at time = current_time+dt
       call set_prescribed_field_values(state, exclude_interpolated=.true., &
            exclude_nonreprescribed=.true., time=current_time+dt)

       if(use_sub_state()) call set_full_domain_prescribed_fields(state,time=current_time+dt)

       ! move the mesh according to a prescribed grid velocity
       ! NOTE: there may be a chicken and egg situation here.  This update
       ! has to come after the setting of the prescribed fields so that
       ! the grid velocity is not advected (in a lagrangian way) with the mesh
       ! after the previous timestep of mesh movement.  However, this means
       ! that other prescribed fields are actually set up according to an old
       ! Coordinate field.
       ! NOTE ALSO: this must come before the enforcement of discrete properties
       ! to ensure those properties are satisfied on the new mesh not the old one.
       call move_mesh_imposed_velocity(state)
       call move_mesh_pseudo_lagrangian(state)

       call enforce_discrete_properties(state, only_prescribed=.true., &
            exclude_interpolated=.true., &
            exclude_nonreprescribed=.true.)

#ifdef HAVE_HYPERLIGHT
       ! Calculate multispectral irradiance fields from hyperlight
       if(have_option("/ocean_biology/lagrangian_ensemble/hyperlight")) then
          call set_irradiance_from_hyperlight(state(1))
       end if
#endif

       ! nonlinear_iterations=maximum no of iterations within a time step

       nonlinear_iteration_loop: do  ITS=1,nonlinear_iterations

          ewrite(1,*)'###################'
          ewrite(1,*)'Start of another nonlinear iteration; ITS,nonlinear_iterations=',ITS,nonlinear_iterations
          ewrite(1,*)'###################'

          call copy_to_stored_values(state, "Iterated")
          ! relax to nonlinear has to come before copy_from_stored_values
          ! so that the up to date values don't get wiped from the field itself
          ! (this could be fixed by replacing relax_to_nonlinear on the field
          !  with a dependency on the iterated field but then copy_to_stored_values
          !  would have to come before relax_to_nonlinear)
          call relax_to_nonlinear(state)
          call copy_from_stored_values(state, "Old")

          ! move the mesh according to the free surface algorithm
          ! this should not be at the end of the nonlinear iteration:
          ! if nonlinear_iterations==1:
          !    OldCoordinate is based on p^{n-1}, as it has been moved at the beginning of the previous timestep
          !    IteratedCoordinate will be moved to p^n, the current pressure achieved at the end of the previous timestep
          !    GridVelocity=(IteratedCoordinate-OldCoordinate)/dt
          !    so the coordinates and grid velocity are lagging one timestep behind the computed p, which is inevitable
          ! if nonlinear_iteration>1:
          !    In the first nonlinear iteration we use the same values of OldCoordinate (based on p^{n-1})
          !    and IteratedCoordinate (based on p at the beginning of last iteration of previous timestep, say p^n*)
          !    In subsequent iterations, we have a reasonable approximation of p^{n+1}, so we base
          !    OldCoordinate on p^n* and IteratedCoordinate on p^(n+1)*, the best approximation p^{n+1} thus
          !    far. Note that OldCoordinate should not be based on p^n (the value of p at the end of the
          !    last iteration of the previous timestep) but on p^n* (the value at the beginning of the last iteration
          !    of previous timestep).

          if (nonlinear_iterations==1) then
            call move_mesh_free_surface(state)
          else
            call move_mesh_free_surface(state, nonlinear_iteration=its)
          end if

          call compute_goals(state)

          !------------------------------------------------
          ! Addition for calculating drag force ------ jem 05-06-2008
          if (have_option("/imported_solids/calculate_drag_on_surface")) then
             call drag_on_surface(state)
          end if

          !     Addition for reading solids in - jem  02-04-2008
          if (have_solids) call solid_configuration(state(ss:ss))

          !Explicit ALE ------------   jem 21/07/08
          if (use_ale) then
             EWRITE(0,'(A)') '----------------------------------------------'
             EWRITE(0,'(A26,E12.6)') 'Using explicit_ale. time: ',current_time
             call explicit_ale(state,fs)
          end if
          !end explicit ale ------------  jem 21/07/08

          ! Call to electrical properties for porous_media module 
          if (have_option("/porous_media")) then
             ! compute spontaneous electrical potentials
             do i=1,size(state)
                option_buffer = '/material_phase['//int2str(i-1)//']/electrical_properties/'
                ! Option to search through a space of saturation distributions to find
                ! best match to measured electrical data - for reservoir modelling.
                if (have_option(trim(option_buffer)//'Saturation_Distribution_Search')) then
                   call search_saturations_hookejeeves(state, i)
                elseif (have_option(trim(option_buffer)//'coupling_coefficients/scalar_field::Electrokinetic').or.&
                    have_option(trim(option_buffer)//'coupling_coefficients/scalar_field::Thermoelectric').or.&
                    have_option(trim(option_buffer)//'coupling_coefficients/scalar_field::Electrochemical')) then
                   call calculate_electrical_potential(state(i), i)
                end if
             end do
          end if

          if (have_option("/ocean_biology")) then
             call calculate_biology_terms(state(1))
          end if

          if (have_option("/implicit_solids")) then
             call solids(state(1), its, nonlinear_iterations)
          end if

          field_loop: do it = 1, ntsol
             ewrite(2, "(a,i0,a,i0)") "Considering scalar field ", it, " of ", ntsol
             ewrite(1, *) "Considering scalar field " // trim(field_name_list(it)) // " in state " // trim(state(field_state_list(it))%name)

             ! do we have the generic length scale vertical turbulence model?
             if( have_option("/material_phase[0]/subgridscale_parameterisations/GLS/option")) then
                if( (trim(field_name_list(it))=="GLSTurbulentKineticEnergy")) then
                    call gls_tke(state(1))
                else if( (trim(field_name_list(it))=="GLSGenericSecondQuantity")) then
                    call gls_psi(state(1))
                end if
             end if

             ! do we have the k-epsilon 2 equation turbulence model?
             if(have_k_epsilon .and. have_option(trim(keps_option_path)//"/scalar_field::"//trim(field_name_list(it)//"/prognostic"))) then
                if( (trim(field_name_list(it))=="TurbulentKineticEnergy")) then
                    call keps_tke(state(1))
                else if( (trim(field_name_list(it))=="TurbulentDissipation")) then
                    call keps_eps(state(1))
                endif
             end if

            ! Calculate the meltrate
            if(have_option("/ocean_forcing/iceshelf_meltrate/Holland08/") ) then
                if( (trim(field_name_list(it))=="MeltRate")) then
                    call melt_surf_calc(state(1))
                endif
            end if


             call get_option(trim(field_optionpath_list(it))//&
                  '/prognostic/equation[0]/name', &
                  option_buffer, default="UnknownEquationType")
             select case(trim(option_buffer))
             case ( "AdvectionDiffusion", "ConservationOfMass", "ReducedConservationOfMass", "InternalEnergy", "HeatTransfer" )
                use_advdif=.true.
             case default
                use_advdif=.false.
             end select

             IF(use_advdif)THEN

                sfield => extract_scalar_field(state(field_state_list(it)), field_name_list(it))
                call calculate_diagnostic_children(state, field_state_list(it), sfield)


                !--------------------------------------------------
                !This addition creates a field that is a copy of
                !another to be used, i.e.: for diffusing.
                call get_copied_field(field_name_list(it), state(field_state_list(it)))
                !--------------------------------------------------

                IF(have_option(trim(field_optionpath_list(it))//&
                     & "/prognostic/spatial_discretisation/discontinuous_galerkin")) then

                   ! Solve the DG form of the equations.
                   call solve_advection_diffusion_dg(field_name=field_name_list(it), &
                        & state=state(field_state_list(it)))

                ELSEIF(have_option(trim(field_optionpath_list(it))//&
                     & "/prognostic/spatial_discretisation/finite_volume")) then

                   ! Solve the FV form of the equations.
                   call solve_advection_diffusion_fv(field_name=field_name_list(it), &
                        & state=state(field_state_list(it)))

                ELSEIF(have_option(trim(field_optionpath_list(it))//&
                     & "/prognostic/spatial_discretisation/control_volumes")) then

                   ! Solve the pure control volume form of the equations
                   call solve_field_eqn_cv(field_name=trim(field_name_list(it)), &
                        state=state(field_state_list(it):field_state_list(it)), &
                        global_it=its)

                else if(have_option(trim(field_optionpath_list(it)) // &
                     & "/prognostic/spatial_discretisation/continuous_galerkin")) then

                   call solve_field_equation_cg(field_name_list(it), state(field_state_list(it)), dt)
                else

                   ewrite(2, *) "Not solving scalar field " // trim(field_name_list(it)) // " in state " // trim(state(field_state_list(it))%name) //" in an advdif-like subroutine."

                end if ! End of dg/cv/cg choice.

                ! ENDOF IF((TELEDI(IT).EQ.1).AND.D3) THEN ELSE...
             ENDIF

             ewrite(1, *) "Finished field " // trim(field_name_list(it)) // " in state " // trim(state(field_state_list(it))%name)
          end do field_loop

          ! Sort out the dregs of GLS after the solve on Psi (GenericSecondQuantity) has finished
          if( have_option("/material_phase[0]/subgridscale_parameterisations/GLS/option")) then
            call gls_diffusivity(state(1))
          end if

          ! k_epsilon after the solve on Epsilon has finished
          if(have_k_epsilon .and. have_option(trim(keps_option_path)//"/scalar_field::ScalarEddyViscosity/diagnostic")) then
            ! Update the diffusivity, at each iteration.
            call keps_eddyvisc(state(1))
          end if
          
          !BC for ice melt
          if (have_option('/ocean_forcing/iceshelf_meltrate/Holland08/calculate_boundaries')) then
            call melt_bc(state(1))
          endif
          
          if(option_count("/material_phase/scalar_field/prognostic/spatial_discretisation/coupled_cv")>0) then
             call coupled_cv_field_eqn(state, global_it=its)
          end if
          !CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
          !
          ! Assemble and solve N.S equations.
          !

          if (have_solids) then
             ewrite(2,*) 'into solid_drag_calculation'
             call solid_drag_calculation(state(ss:ss), its, nonlinear_iterations)
             ewrite(2,*) 'out of solid_drag_calculation'
          end if

          do i=1, option_count("/material_phase")
            option_path="/material_phase["//int2str(i-1)//"]/scalar_field::FoamVelocityPotential"
            if( have_option(trim(option_path)//"/prognostic")) then
               call calculate_potential_flow(state(i), phi=foam_velocity_potential)
               call calculate_foam_velocity(state(i), foamvel=foamvel)
               ! avoid outflow bc's for velocity being zero after adapts
               call set_boundary_conditions_values(state, shift_time=.true.)
            end if
          end do 

          ! This is where the non-legacy momentum stuff happens
          ! a loop over state (hence over phases) is incorporated into this subroutine call
          ! hence this lives outside the phase_loop

          if(use_sub_state()) then
             call update_subdomain_fields(state,sub_state)
             call solve_momentum(sub_state,at_first_timestep=((timestep==1).and.(its==1)),timestep=timestep, POD_state=POD_state)
             call sub_state_remap_to_full_mesh(state, sub_state)
          else
             call solve_momentum(state,at_first_timestep=((timestep==1).and.(its==1)),timestep=timestep, POD_state=POD_state)
          end if

          if(nonlinear_iterations > 1) then
             ! Check for convergence between non linear iteration loops
             call test_and_write_convergence(state, current_time + dt, dt, its, change)
             if(its == 1) chaold = change

             if (have_option("/timestepping/nonlinear_iterations/&
                              &tolerance")) then
               ewrite(2, *) "Nonlinear iteration change = ", change
               ewrite(2, *) "Nonlinear iteration tolerance = ", nonlinear_iteration_tolerance

               if(change < abs(nonlinear_iteration_tolerance)) then
                  ewrite(1, *) "Nonlinear iteration tolerance has been reached"
                  ewrite(1, "(a,i0,a)") "Exiting nonlinear iteration loop after ", its, " iterations"
                  exit nonlinear_iteration_loop
               endif
             end if
          end if

          if(have_solids) then
             ewrite(2,*) 'into solid_data_update'
             call solid_data_update(state(ss:ss), its, nonlinear_iterations)
             ewrite(2,*) 'out of solid_data_update'
          end if

       end do nonlinear_iteration_loop

       ! Reset the number of nonlinear iterations in case it was overwritten by nonlinear_iterations_adapt
       call get_option('/timestepping/nonlinear_iterations',nonlinear_iterations,&
         & default=1)

       if(have_option("/timestepping/nonlinear_iterations/terminate_if_not_converged")) then
          if(its >= nonlinear_iterations .and. change >= abs(nonlinear_iteration_tolerance)) then
             ewrite(0, *) "Nonlinear iteration tolerance not reached - termininating"
             exit timestep_loop
          end if
       end if

       if (have_option("/implicit_solids")) then
          call implicit_solids_update(state(1))
          if (have_option("/timestepping/nonlinear_iterations/tolerance")) then
             if ((its < nonlinear_iterations .and. change < abs(nonlinear_iteration_tolerance))) then
                call implicit_solids_nonlinear_iteration_converged()
             end if
          end if
       end if

       if(have_option(trim('/mesh_adaptivity/mesh_movement/vertical_ale'))) then
          ewrite(1,*) 'Entering vertical_ale routine'
          !move the mesh and calculate the grid velocity
          call movemeshy(state(1))
       end if
       if (have_option('/mesh_adaptivity/mesh_movement')) then
          ! During the timestep Coordinate is evaluated at n+theta, i.e.
          ! (1-theta)*OldCoordinate+theta*IteratedCoordinate. For writing
          ! the diagnostics we use the end-of-timestep n+1 coordinate however,
          ! so that we can check conservation properties.
          ! Using state(1) should be safe as they are aliased across all states.
          call set_vector_field_in_state(state(1), "Coordinate", "IteratedCoordinate")
          call IncrementEventCounter(EVENT_MESH_MOVEMENT)

          call sync_detector_coordinates(state(1))
       end if

       current_time=current_time+DT
!       ! Calculate the meltrate
!       if(have_option("/ocean_forcing/iceshelf_meltrate/Holland08/") ) then
!          call melt_surf_calc(state(1))
!       end if
       ! calculate and write diagnostics before the timestep gets changed
       call calculate_diagnostic_variables(State, exclude_nonrecalculated=.true.)
       call calculate_diagnostic_variables_new(state, exclude_nonrecalculated = .true.)
          
       ! Call the modern and significantly less satanic version of study
       call write_diagnostics(state, current_time, dt, timestep)
       ! Work out the domain volume by integrating the water depth function over the surface if using wetting and drying
       if (have_option("/mesh_adaptivity/mesh_movement/free_surface/wetting_and_drying")) then
          ewrite(1, *) "Domain volume (\int_{fs} (\eta.-b)n.n_z)): ", calculate_volume_by_surface_integral(state(1))
       end if 


       if(have_option("/timestepping/adaptive_timestep")) call calc_cflnumber_field_based_dt(state, dt)

       ! Update the options dictionary for the new timestep and current_time.
       call set_option("/timestepping/timestep", dt)
       call set_option("/timestepping/current_time", current_time)

       ! if strong bc or weak that overwrite then enforce the bc on the fields
       ! (should only do something for weak bcs with that options switched on)
       call set_dirichlet_consistent(state)

       if(have_option("/timestepping/steady_state")) then

          call test_and_write_steady_state(state, change)
          if(change<steady_state_tolerance) then
             ewrite(0,*)  "* Steady state has been attained, exiting the timestep loop"
             exit timestep_loop
          end if

       end if

       if(simulation_completed(current_time)) exit timestep_loop

       ! ******************
       ! *** Mesh adapt ***
       ! ******************

       if(have_option("/mesh_adaptivity/hr_adaptivity")) then

          if(do_adapt_mesh(current_time, timestep)) then

             call pre_adapt_tasks(sub_state)

             call qmesh(state, metric_tensor)
             if(have_option("/io/stat/output_before_adapts")) call write_diagnostics(state, current_time, dt, timestep, not_to_move_det_yet=.true.)
             call run_diagnostics(state)

             call adapt_state(state, metric_tensor)

             call update_state_post_adapt(state, metric_tensor, dt, sub_state, nonlinear_iterations, nonlinear_iterations_adapt)

             if(have_option("/io/stat/output_after_adapts")) call write_diagnostics(state, current_time, dt, timestep, not_to_move_det_yet=.true.)
             call run_diagnostics(state)
 
          end if
       else if(have_option("/mesh_adaptivity/prescribed_adaptivity")) then
          if(do_adapt_state_prescribed(current_time)) then

             call pre_adapt_tasks(sub_state)

             if(have_option("/io/stat/output_before_adapts")) call write_diagnostics(state, current_time, dt, timestep, not_to_move_det_yet=.true.)
             call run_diagnostics(state)

             call adapt_state_prescribed(state, current_time)
             call update_state_post_adapt(state, metric_tensor, dt, sub_state, nonlinear_iterations, nonlinear_iterations_adapt)

             if(have_option("/io/stat/output_after_adapts")) call write_diagnostics(state, current_time, dt, timestep, not_to_move_det_yet=.true.)
             call run_diagnostics(state)

          end if

       not_to_move_det_yet=.false.

       end if

    end do timestep_loop
    ! ****************************
    ! *** END OF TIMESTEP LOOP ***
    ! ****************************

    ! Checkpoint at end, if enabled
    if(have_option("/io/checkpointing/checkpoint_at_end")) then
       call checkpoint_simulation(state, cp_no = dump_no)
    end if
    ! Dump at end, unless explicitly disabled
    if(.not. have_option("/io/disable_dump_at_end")) then
       call write_state(dump_no, state)
    end if

    ! cleanup GLS
    if (have_option('/material_phase[0]/subgridscale_parameterisations/GLS/')) then
        call gls_cleanup()
    end if

    ! cleanup k_epsilon
    if (have_k_epsilon) then
        call keps_cleanup()
    end if

    if (have_option("/material_phase[0]/sediment")) then
        call sediment_cleanup()
    end if

    ! closing .stat, .convergence and .detector files
    call close_diagnostic_files()

    ! deallocate the array of all detector lists
    call deallocate_detector_list_array()

    ewrite(1, *) "Printing references before final deallocation"
    call print_references(1)

    ! Deallocate the metric tensor
    if(have_option("/mesh_adaptivity/hr_adaptivity")) call deallocate(metric_tensor)
    ! Deallocate state
    do i = 1, size(state)
       call deallocate(state(i))
    end do
    ! Deallocate the reserve state
    call deallocate_reserve_state()

    ! Deallocate sub_state:
    if(use_sub_state()) then
       do i = 1, size(sub_state)
          call deallocate(sub_state(i))
       end do
    end if

    if (allocated(pod_state)) then
       do i=1, size(pod_state)
          call deallocate(pod_state(i))
       end do
    end if
    
    ! deallocate the pointer to the array of states and sub-state:
    deallocate(state)
    if(use_sub_state()) deallocate(sub_state)

    ! Clean up registered diagnostics
    call destroy_registered_diagnostics 

    ! Delete the transform_elements cache.
    call deallocate_transform_cache

    ewrite(1, *) "Printing references after final deallocation"
    call print_references(0)

#ifdef HAVE_MEMORY_STATS
    call print_current_memory_stats(0)
#endif

  contains

    subroutine set_simulation_start_times()
      !!< Set the simulation start times

      call get_option("/timestepping/current_time", simulation_start_time)

      call cpu_time(simulation_start_cpu_time)
      call allmax(simulation_start_cpu_time)

      simulation_start_wall_time = wall_time()
      call allmax(simulation_start_wall_time)

    end subroutine set_simulation_start_times

  end subroutine fluids

  subroutine pre_adapt_tasks(sub_state)

    type(state_type), dimension(:), pointer :: sub_state

    integer :: ss

    ! GLS - we need to deallocate all module-level fields or the memory
    ! management system complains
    if (have_option("/material_phase[0]/subgridscale_parameterisations/GLS/")) then
        call gls_cleanup() ! deallocate everything
    end if

    ! k_epsilon - we need to deallocate all module-level fields or the memory
    ! management system complains
    if (have_option("/material_phase[0]/subgridscale_parameterisations/k-epsilon/")) then
        call keps_cleanup() ! deallocate everything
    end if

    ! deallocate sub-state
    if(use_sub_state()) then
      do ss = 1, size(sub_state)
        call deallocate(sub_state(ss))
      end do
      deallocate(sub_state)
    end if

  end subroutine pre_adapt_tasks

  subroutine update_state_post_adapt(state, metric_tensor, dt, sub_state, nonlinear_iterations, nonlinear_iterations_adapt)
    type(state_type), dimension(:), intent(inout) :: state
    type(tensor_field), intent(out) :: metric_tensor
    real, intent(inout) :: dt
    integer, intent(inout) :: nonlinear_iterations, nonlinear_iterations_adapt
    type(state_type), dimension(:), pointer :: sub_state
    character(len=OPTION_PATH_LEN) :: keps_option_path

    ! Overwrite the number of nonlinear iterations if the option is switched on
    if(have_option("/timestepping/nonlinear_iterations/nonlinear_iterations_at_adapt")) then
      call get_option('/timestepping/nonlinear_iterations/nonlinear_iterations_at_adapt',nonlinear_iterations_adapt)
      nonlinear_iterations = nonlinear_iterations_adapt
    end if

    ! The adaptivity metric
    if(have_option("/mesh_adaptivity/hr_adaptivity")) then
      call allocate(metric_tensor, extract_mesh(state(1), topology_mesh_name), "ErrorMetric")
    end if

    ! Auxilliary fields.
    call allocate_and_insert_auxilliary_fields(state)
    call copy_to_stored_values(state,"Old")
    call copy_to_stored_values(state,"Iterated")
    call relax_to_nonlinear(state)

    ! Repopulate substate
    if(use_sub_state()) then
       call populate_sub_state(state,sub_state)
    end if

    ! Discrete properties
    call enforce_discrete_properties(state)

    if (have_option("/mesh_adaptivity/hr_adaptivity/adaptive_timestep_at_adapt")) then
        if (have_option("/timestepping/adaptive_timestep/minimum_timestep")) then
            call get_option("/timestepping/adaptive_timestep/minimum_timestep", dt)
            call set_option("/timestepping/timestep", dt)
        else
            ewrite(-1,*) "Warning: you have adaptive timestep adjustment after &&
                          && adapt, but have not set a minimum timestep"
        end if
    else
        ! Timestep adapt
        if(have_option("/timestepping/adaptive_timestep")) then
            call calc_cflnumber_field_based_dt(state, dt, force_calculation = .true.)
            call set_option("/timestepping/timestep", dt)
        end if
    end if

    ! Ocean boundaries
    if (has_scalar_field(state(1), "DistanceToTop")) then
      if (.not. have_option('/geometry/ocean_boundaries')) then
         ! Leaving this an FLAbort as there's a check up above when initilising.
         ! If we get this error after adapting, then something went very wrong!
         FLAbort("There are no top and bottom boundary markers.")
      end if
      call CalculateTopBottomDistance(state(1))
    end if

    ! Diagnostic fields
    call calculate_diagnostic_variables(state)
    call calculate_diagnostic_variables_new(state)
    ! This is mostly to ensure that the photosynthetic radiation
    ! has a non-zero value before the next adapt.
    if(have_option("/ocean_biology")) call calculate_biology_terms(state(1))

    ! GLS
    if (have_option("/material_phase[0]/subgridscale_parameterisations/GLS/")) then
        call gls_adapt_mesh(state(1))
    end if

    ! k_epsilon
    keps_option_path="/material_phase[0]/subgridscale_parameterisations/k-epsilon/"
    if (have_option(trim(keps_option_path)//"/scalar_field::TurbulentKineticEnergy/prognostic") &
        &.and. have_option(trim(keps_option_path)//"/scalar_field::TurbulentDissipation/prognostic") &
        &.and. have_option(trim(keps_option_path)//"/scalar_field::ScalarEddyViscosity/diagnostic")) then
        call keps_adapt_mesh(state(1))
    end if

  end subroutine update_state_post_adapt

  subroutine fluids_module_check_options
    !!< Check fluids specific options

    integer :: stat
    real :: time_limit

    ewrite(2, *) "Checking simulation completion options"

    call get_option("/timestepping/wall_time_limit", time_limit, stat)
    if(stat == SPUD_NO_ERROR) then
      if(time_limit < 0.0) then
        FLExit("Wall time limit cannot be negative")
      end if
      if(.not. wall_time_supported()) then
        FLExit("Wall time limit supplied, but wall time is not available")
      end if
    end if

    ewrite(2, *) "Finished checking simulation completion options"

  end subroutine fluids_module_check_options

  subroutine check_old_code_path()
  !!< checks whether any of the phases use the old code path
    character(len=OPTION_PATH_LEN):: option_path
    character(len=FIELD_NAME_LEN):: tmpstring
    logical:: use_advdif
    integer:: i, j, tmpstat

    ! first check for a velocity field with legacy options
    do i=1, option_count("/material_phase")
      option_path="/material_phase["//int2str(i-1)//"]/vector_field::Velocity"
      if( have_option(trim(option_path)//"/prognostic/spatial_discretisation&
                                &/legacy_continuous_galerkin") &
          .or. &
          have_option(trim(option_path)//"/prognostic/spatial_discretisation&
                                &/legacy_discretisation") &
        ) then

        ewrite(0,*) "ERROR: You seem to be using legacy_continuous_galerkin or "
        ewrite(0,*) "legacy_discretisation for spatial_discretisation of Velocity."
        ewrite(0,*) "This uses the old code path (navsto) which has been deleted."
        ewrite(0,*) "You should switch to continuous_galerkin."
        FLExit("The old code path is dead.")
      end if
    end do

    do i=1, option_count("/material_phase")
      do j=1, option_count("/material_phase["//int2str(i-1)//"]/scalar_field")
        option_path="/material_phase["//int2str(i-1)//"]/scalar_field["//int2str(j-1)//']'

        ! this is a copy from fluids() above:
        call get_option(trim(option_path)//&
              '/prognostic/equation[0]/name', &
              tmpstring, stat=tmpstat)
        if (tmpstat==0) then
          select case(trim(tmpstring))
          case ( "AdvectionDiffusion", "ConservationOfMass", "ReducedConservationOfMass", "InternalEnergy" )
            use_advdif=.true.
          case default
            use_advdif=.false.
          end select
        else
          use_advdif=.false.
        end if

        if (use_advdif .and. ( &
          have_option(trim(option_path)//&
            & "/prognostic/spatial_discretisation/legacy_continuous_galerkin").or.&
          have_option(trim(option_path)//&
            & "/prognostic/spatial_discretisation/legacy_mixed_cv_cg").or.&
          have_option(trim(option_path)//&
            & "/prognostic/spatial_discretisation/legacy_discretisation") &
          )) then

          ewrite(0,*) "Error: You seem to be using legacy_continuous_galerkin,"
          ewrite(0,*) "legacy_mixed_cv_cg or legacy_discretisation for the"
          ewrite(0,*) "spatial discretisation of one of your scalar fields."
          ewrite(0,*) "This uses the old code path (advdif) that has been deleted"
          ewrite(0,*) "You should switch to any of the other options."
          FLExit("The old code path is dead.")
        end if

      end do
    end do

  end subroutine check_old_code_path

  end module fluids_module