Newer
Older
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
sections(i)%flag_strain = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_strain_'//cm(il:3),answer,ires)
sections(i)%flag_strain=(trim(answer)=='T')
end if
sections(i)%flag_crit = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_crit_'//cm(il:3),answer,ires)
sections(i)%flag_crit=(trim(answer)=='T')
end if
sections(i)%flag_grid = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_grid_'//cm(il:3),answer,ires)
sections(i)%flag_grid=(trim(answer)=='T')
end if
sections(i)%flag_u = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_u_'//cm(il:3),answer,ires)
sections(i)%flag_u=(trim(answer)=='T')
end if
sections(i)%flag_v = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_v_'//cm(il:3),answer,ires)
sections(i)%flag_v=(trim(answer)=='T')
end if
sections(i)%flag_w = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_w_'//cm(il:3),answer,ires)
sections(i)%flag_w=(trim(answer)=='T')
end if
sections(i)%flag_uvw = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_uvw_'//cm(il:3),answer,ires)
sections(i)%flag_uvw=(trim(answer)=='T')
end if
sections(i)%flag_colour = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_colour_'//cm(il:3),answer,ires)
sections(i)%flag_colour=(trim(answer)=='T')
end if
sections(i)%flag_mu = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_mu_'//cm(il:3),answer,ires)
sections(i)%flag_mu=(trim(answer)=='T')
end if
sections(i)%flag_plastic = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_plastic_'//cm(il:3),answer,ires)
sections(i)%flag_plastic=(trim(answer)=='T')
end if
sections(i)%flag_q = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_q_'//cm(il:3),answer,ires)
sections(i)%flag_q=(trim(answer)=='T')
end if
sections(i)%flag_lode = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_lode_'//cm(il:3),answer,ires)
sections(i)%flag_lode=(trim(answer)=='T')
end if
sections(i)%flag_vfield = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_vfield_'//cm(il:3),answer,ires)
sections(i)%flag_vfield=(trim(answer)=='T')
end if
sections(i)%flag_lsf = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_lsf_'//cm(il:3),answer,ires)
sections(i)%flag_lsf=(trim(answer)=='T')
end if
sections(i)%flag_temp = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_temp_'//cm(il:3),answer,ires)
sections(i)%flag_temp=(trim(answer)=='T')
end if
sections(i)%flag_velvect = .false.
if (iproc==0) then
call scanfile (params%infile,'flag_velvect_'//cm(il:3),answer,ires)
sections(i)%flag_velvect=(trim(answer)=='T')
end if
sections(i)%scale=100.d0
if (iproc==0) call scanfile (params%infile,'scale_'//cm(il:3),sections(i)%scale,ires)
sections(i)%colormap = 'jet'
if (iproc==0) call scanfile (params%infile,'colormap_'//cm(il:3),sections(i)%colormap,ires)
sections(i)%ncolours = 256
if (iproc==0) call scanfile (params%infile,'ncolours_'//cm(il:3),sections(i)%ncolours,ires)
end do
!=====[erosion parameters]=====================================================
params%erosion=.false.
if (iproc==0) then
call scanfile (params%infile,'erosion',answer,ires)
params%erosion=(trim(answer)=='T')
end if
call mpi_bcast(params%erosion,1,mpi_logical,0,mpi_comm_world,ierr)
params%zerosion=0.d0
if (iproc==0) call scanfile (params%infile,'zerosion',params%zerosion,ires)
Dave Whipp
committed
params%zerosion=params%zerosion/params%vex
call mpi_bcast(params%zerosion,1,mpi_double_precision,0,mpi_comm_world,ierr)
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
1202
1203
1204
1205
1206
1207
1208
1209
params%er_start=0.d0
if (iproc==0) call scanfile (params%infile,'er_start',params%er_start,ires)
call mpi_bcast(params%er_start,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%er_end=0.d0
if (iproc==0) call scanfile (params%infile,'er_end',params%er_end,ires)
call mpi_bcast(params%er_end,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%sed_start=0.d0
if (iproc==0) call scanfile (params%infile,'sed_start',params%sed_start,ires)
call mpi_bcast(params%sed_start,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%sed_end=0.d0
if (iproc==0) call scanfile (params%infile,'sed_end',params%sed_end,ires)
call mpi_bcast(params%sed_end,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%sedimentation_type=1
if (iproc==0) call scanfile (params%infile,'sedimentation_type',params%sedimentation_type,ires)
call mpi_bcast(params%sedimentation_type,1,mpi_integer,0,mpi_comm_world,ierr)
params%zaggrade_init=0.d0
if (iproc==0) call scanfile (params%infile,'zaggrade_init',params%zaggrade_init,ires)
params%zaggrade_init=params%zaggrade_init/params%vex
call mpi_bcast(params%zaggrade_init,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%x_agg_start=0.d0
if (iproc==0) call scanfile (params%infile,'x_agg_start',params%x_agg_start,ires)
call mpi_bcast(params%x_agg_start,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%x_agg_end=1.d0
if (iproc==0) call scanfile (params%infile,'x_agg_end',params%x_agg_end,ires)
call mpi_bcast(params%x_agg_end,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%y_agg_start=0.d0
if (iproc==0) call scanfile (params%infile,'y_agg_start',params%y_agg_start,ires)
call mpi_bcast(params%y_agg_start,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%y_agg_end=1.d0
if (iproc==0) call scanfile (params%infile,'y_agg_end',params%y_agg_end,ires)
call mpi_bcast(params%y_agg_end,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%x_agg_sinus_amp=0.d0
if (iproc==0) call scanfile (params%infile,'x_agg_sinus_amp',params%x_agg_sinus_amp,ires)
params%x_agg_sinus_amp=params%x_agg_sinus_amp/params%vex
call mpi_bcast(params%x_agg_sinus_amp,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%x_agg_sinus_wavelth=0.5d0
if (iproc==0) call scanfile (params%infile,'x_agg_sinus_wavelth',params%x_agg_sinus_wavelth,ires)
call mpi_bcast(params%x_agg_sinus_wavelth,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%y_agg_sinus_amp=0.d0
if (iproc==0) call scanfile (params%infile,'y_agg_sinus_amp',params%y_agg_sinus_amp,ires)
params%y_agg_sinus_amp=params%y_agg_sinus_amp/params%vex
call mpi_bcast(params%y_agg_sinus_amp,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%y_agg_sinus_wavelth=0.5d0
if (iproc==0) call scanfile (params%infile,'y_agg_sinus_wavelth',params%y_agg_sinus_wavelth,ires)
call mpi_bcast(params%y_agg_sinus_wavelth,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%aggrade_rate=-1.d0
if (iproc==0) call scanfile (params%infile,'aggrade_rate',params%aggrade_rate,ires)
params%aggrade_rate=params%aggrade_rate/params%vex
call mpi_bcast(params%aggrade_rate,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%z_prog_init=0.d0
if (iproc==0) call scanfile (params%infile,'z_prog_init',params%z_prog_init,ires)
params%z_prog_init=params%z_prog_init/params%vex
call mpi_bcast(params%z_prog_init,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%z_prog_fin=0.d0
if (iproc==0) call scanfile (params%infile,'z_prog_fin',params%z_prog_fin,ires)
params%z_prog_fin=params%z_prog_fin/params%vex
call mpi_bcast(params%z_prog_fin,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%x_prog_start=0.d0
if (iproc==0) call scanfile (params%infile,'x_prog_start',params%x_prog_start,ires)
call mpi_bcast(params%x_prog_start,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%x_prog_end=1.d0
if (iproc==0) call scanfile (params%infile,'x_prog_end',params%x_prog_end,ires)
call mpi_bcast(params%x_prog_end,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%x_prog_length=1.d0
if (iproc==0) call scanfile (params%infile,'x_prog_length',params%x_prog_length,ires)
call mpi_bcast(params%x_prog_length,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%prog_rate_u=0.d0
if (iproc==0) call scanfile (params%infile,'prog_rate_u',params%prog_rate_u,ires)
call mpi_bcast(params%prog_rate_u,1,mpi_double_precision,0,mpi_comm_world,ierr)
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
params%length_scale=1.d0
if (iproc==0) call scanfile (params%infile,'length_scale',params%length_scale,ires)
call mpi_bcast(params%length_scale,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%velocity_scale=1.d0
if (iproc==0) call scanfile (params%infile,'velocity_scale',params%velocity_scale,ires)
call mpi_bcast(params%velocity_scale,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%fluvial_erosion=2.d-1
if (iproc==0) call scanfile (params%infile,'fluvial_erosion',params%fluvial_erosion,ires)
call mpi_bcast(params%fluvial_erosion,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%diffusion_erosion=8.d0
if (iproc==0) call scanfile (params%infile,'diffusion_erosion',params%diffusion_erosion,ires)
call mpi_bcast(params%diffusion_erosion,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%baselevelx0=1
if (iproc==0) call scanfile (params%infile,'baselevelx0',params%baselevelx0,ires)
call mpi_bcast(params%baselevelx0,1,mpi_integer,0,mpi_comm_world,ierr)
params%baselevelx1=1
if (iproc==0) call scanfile (params%infile,'baselevelx1',params%baselevelx1,ires)
call mpi_bcast(params%baselevelx1,1,mpi_integer,0,mpi_comm_world,ierr)
params%baselevely0=1
if (iproc==0) call scanfile (params%infile,'baselevely0',params%baselevely0,ires)
call mpi_bcast(params%baselevely0,1,mpi_integer,0,mpi_comm_world,ierr)
params%baselevely1=1
if (iproc==0) call scanfile (params%infile,'baselevely1',params%baselevely1,ires)
call mpi_bcast(params%baselevely1,1,mpi_integer,0,mpi_comm_world,ierr)
params%compute_qpgram=.false.
if (iproc.eq.0) then
call scanfile (params%infile,'compute_qpgram',answer,ires)
params%compute_qpgram=(trim(answer)=='T')
end if
call mpi_bcast(params%compute_qpgram,1,mpi_logical,0,mpi_comm_world,ierr)
!=====[flexure parameters]=====================================================
params%isostasy=.false.
if (iproc.eq.0) then
call scanfile (params%infile,'isostasy',answer,ires)
params%isostasy=(trim(answer)=='T')
endif
call mpi_bcast(params%isostasy,1,mpi_logical,0,mpi_comm_world,ierr)
params%flexure=.false.
if (iproc.eq.0) then
call scanfile (params%infile,'flexure',answer,ires)
params%flexure=(trim(answer)=='T')
endif
call mpi_bcast(params%flexure,1,mpi_logical,0,mpi_comm_world,ierr)
params%isobc=.false.
if (iproc==0) then
call scanfile (params%infile,'isobc',answer,ires)
params%isobc=(trim(answer)=='T')
end if
call mpi_bcast(params%isobc,1,mpi_logical,0,mpi_comm_world,ierr)
params%elastic_plate_thickness=20.d3
if (iproc==0) call scanfile (params%infile,'elastic_plate_thickness',params%elastic_plate_thickness,ires)
call mpi_bcast(params%elastic_plate_thickness,1,mpi_double_precision,0,mpi_comm_world,ierr)
params%density_difference=3.d3
if (iproc==0) call scanfile (params%infile,'density_difference',params%density_difference,ires)
call mpi_bcast(params%density_difference,1,mpi_double_precision,0,mpi_comm_world,ierr)
!=====[nest parameters]========================================================
params%nest=.false.
if (iproc==0) then
call scanfile (params%infile,'nest',answer,ires)
params%nest=(trim(answer)=='T')
end if
call mpi_bcast(params%nest,1,mpi_logical,0,mpi_comm_world,ierr)
if (params%nest) then
nest%ssoutdir='SSOUT'
if (iproc.eq.0) call scanfile (params%infile,'ssoutdir',nest%ssoutdir,ires)
call mpi_bcast(nest%ssoutdir,5,mpi_character,0,mpi_comm_world,ierr)
nest%lsoutfile='OUT/time_0001.bin'
if (iproc.eq.0) call scanfile (params%infile,'lsoutfile',nest%lsoutfile,ires)
call mpi_bcast(nest%lsoutfile,128,mpi_character,0,mpi_comm_world,ierr)
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
nest%sselemx=1.d0
if (iproc==0) call scanfile (params%infile,'sselemx',nest%sselemx,ires)
call mpi_bcast(nest%sselemx,1,mpi_double_precision,0,mpi_comm_world,ierr)
nest%sselemy=1.d0
if (iproc==0) call scanfile (params%infile,'sselemy',nest%sselemy,ires)
call mpi_bcast(nest%sselemy,1,mpi_double_precision,0,mpi_comm_world,ierr)
nest%sselemz=1.d0
if (iproc==0) call scanfile (params%infile,'sselemz',nest%sselemz,ires)
call mpi_bcast(nest%sselemz,1,mpi_double_precision,0,mpi_comm_world,ierr)
nest%xminls=0.d0
if (iproc==0) call scanfile (params%infile,'xminls',nest%xminls,ires)
call mpi_bcast(nest%xminls,1,mpi_double_precision,0,mpi_comm_world,ierr)
nest%yminls=0.d0
if (iproc==0) call scanfile (params%infile,'yminls',nest%yminls,ires)
call mpi_bcast(nest%yminls,1,mpi_double_precision,0,mpi_comm_world,ierr)
nest%zminls=0.d0
if (iproc==0) call scanfile (params%infile,'zminls',nest%zminls,ires)
call mpi_bcast(nest%zminls,1,mpi_double_precision,0,mpi_comm_world,ierr)
nest%sselemx0=1.d0
if (iproc==0) call scanfile (params%infile,'sselemx0',nest%sselemx0,ires)
call mpi_bcast(nest%sselemx0,1,mpi_double_precision,0,mpi_comm_world,ierr)
nest%sselemy0=1.d0
if (iproc==0) call scanfile (params%infile,'sselemy0',nest%sselemy0,ires)
call mpi_bcast(nest%sselemy0,1,mpi_double_precision,0,mpi_comm_world,ierr)
nest%sselemz0=1.d0
if (iproc==0) call scanfile (params%infile,'sselemz0',nest%sselemz0,ires)
call mpi_bcast(nest%sselemz0,1,mpi_double_precision,0,mpi_comm_world,ierr)
Dave Whipp
committed
! Defined, but not broadcast or read from input file
!params%distance_exponent=-log(2.d0)/log(cos(params%anglemax))
params%distance_exponent=1.d0
Dave Whipp
committed
! Input values are now written to stdout or log files here
if (params%debug.gt.0 .and. iproc.eq.0) then
write(*,'(a)') shift//'--- ADDITIONAL CONTROLLING PARAMETERS ---'
write(*,'(a,l1)') shift//'compute_qpgram ',params%compute_qpgram
write(*,'(a)') shift//'--- SPINUP PHASE ---'
write(*,'(a,i4)') shift//'nstep_spinup ',params%nstep_spinup
write(*,'(a,e11.4)') shift//'dt_spinup ',params%dt_spinup
write(*,'(a,i4)') shift//'griditer_spinup ',params%griditer_spinup
write(*,'(a,i4)') shift//'nonlinear_iterations_spinup ',params%nonlinear_iterations_spinup
write(*,'(a,e11.4)') shift//'tol_spinup ',params%tol_spinup
write(*,'(a,l1)') shift//'sstemp_spinup ',params%sstemp_spinup
write(*,'(a,e11.4)') shift//'sstemp_viscosity_spinup ',params%sstemp_viscosity_spinup
write(*,'(a,l1)') shift//'all_surf_fixed_spinup ',params%all_surf_fixed_spinup
do i=1,params%ns
write(*,'(a,i4,a,i4)') shift//'surface ',i,' material_spinup ',surface(i)%material_spinup
enddo
write(*,'(a,l1)') shift//'fixed_cloud_spinup ',params%fixed_cloud_spinup
write(*,'(a)') shift//'--- TIMESTEPPING ---'
write(*,'(a,e11.4)') shift//'dt_main ',params%dt_main
write(*,'(a,e11.4)') shift//'dt ',params%dt
write(*,'(a,i4)') shift//'nstep ',params%nstep
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
write(*,'(a,e11.4)') shift//'courant ',params%courant
write(*,'(a,l1)') shift//'normaladvect ',params%normaladvect
write(*,'(a)') shift//'--- GRID ITERATIONS ---'
write(*,'(a,i4)') shift//'griditer_main ',params%griditer_main
write(*,'(a,i4)') shift//'griditer ',params%griditer
write(*,'(a,e11.4)') shift//'octree_refine_ratio ',params%octree_refine_ratio
write(*,'(a)') shift//'--- NONLINEAR ITERATIONS ---'
write(*,'(a,i4)') shift//'nonlinear_iterations_main ',params%nonlinear_iterations_main
write(*,'(a,i4)') shift//'nonlinear_iterations ',params%nonlinear_iterations
write(*,'(a,i4)') shift//'nb_iter_nl_min ',params%nb_iter_nl_min
write(*,'(a,e11.4)') shift//'tol ',params%tol
write(*,'(a,l1)') shift//'adaptive_tol ',params%adaptive_tol
write(*,'(a)') shift//'--- OCTREES ---'
write(*,'(a,i4)') shift//'leveluniform_oct ',params%leveluniform_oct
write(*,'(a,i4)') shift//'levelmax_oct ',params%levelmax_oct
write(*,'(a,e11.4)') shift//'vex ',params%vex
write(*,'(a,l1)') shift//'ismooth ',params%ismooth
write(*,'(a,i12)') shift//'noctreemax ',params%noctreemax
write(*,'(a,e11.4)') shift//'refine_ratio ',params%refine_ratio
write(*,'(a,i4)') shift//'refine_criterion ',params%refine_criterion
write(*,'(a,i4)') shift//'initial_refine_level ',params%initial_refine_level
write(*,'(a,l1)') shift//'renumber_nodes ',params%renumber_nodes
write(*,'(a)') shift//'--- NESTED MODEL PARAMETERS ---'
write(*,'(a,l1)') shift//'nest ',params%nest
if (params%nest) then
write(*,'(a,a)') shift//'ssoutdir ',trim(nest%ssoutdir)
write(*,'(a,a)') shift//'lsoutfile ',trim(nest%lsoutfile)
write(*,'(a,e11.4)') shift//'sselemx ',nest%sselemx
write(*,'(a,e11.4)') shift//'sselemy ',nest%sselemy
write(*,'(a,e11.4)') shift//'sselemz ',nest%sselemz
write(*,'(a,e11.4)') shift//'xminls ',nest%xminls
write(*,'(a,e11.4)') shift//'yminls ',nest%yminls
write(*,'(a,e11.4)') shift//'zminls ',nest%zminls
write(*,'(a,e11.4)') shift//'sselemx0 ',nest%sselemx0
write(*,'(a,e11.4)') shift//'sselemy0 ',nest%sselemy0
write(*,'(a,e11.4)') shift//'sselemz0 ',nest%sselemz0
endif
write(*,'(a)') shift//'--- BOUNDARY CONDITIONS AND VELOCITY CONSTRAINTS ---'
write(*,'(a,l1)') shift//'invariants_2d ',params%invariants_2d
write(*,'(a,l1)') shift//'damp_surface ',params%damp_surface
write(*,'(a,e11.4)') shift//'damp_factor ',params%damp_factor
write(*,'(a,a)') shift//'bctype ',bcdef%bctype
select case(trim(bcdef%bctype))
case('basic')
write(*,'(a,a)') shift//'bcorder ',bcdef%bcorder
write(*,'(a,l1)') shift//'fixux0 ',bcdef%fixux0
write(*,'(a,l1)') shift//'fixux1 ',bcdef%fixux1
write(*,'(a,l1)') shift//'fixvx0 ',bcdef%fixvx0
write(*,'(a,l1)') shift//'fixvx1 ',bcdef%fixvx1
write(*,'(a,l1)') shift//'fixwx0 ',bcdef%fixwx0
write(*,'(a,l1)') shift//'fixwx1 ',bcdef%fixwx1
write(*,'(a,l1)') shift//'fixuy0 ',bcdef%fixuy0
write(*,'(a,l1)') shift//'fixuy1 ',bcdef%fixuy1
write(*,'(a,l1)') shift//'fixvy0 ',bcdef%fixvy0
write(*,'(a,l1)') shift//'fixvy1 ',bcdef%fixvy1
write(*,'(a,l1)') shift//'fixwy0 ',bcdef%fixwy0
write(*,'(a,l1)') shift//'fixwy1 ',bcdef%fixwy1
write(*,'(a,l1)') shift//'fixuz0 ',bcdef%fixuz0
write(*,'(a,l1)') shift//'fixuz1 ',bcdef%fixuz1
write(*,'(a,l1)') shift//'fixvz0 ',bcdef%fixvz0
write(*,'(a,l1)') shift//'fixvz1 ',bcdef%fixvz1
write(*,'(a,l1)') shift//'fixwz0 ',bcdef%fixwz0
write(*,'(a,l1)') shift//'fixwz1 ',bcdef%fixwz1
write(*,'(a,e11.4)') shift//'ux0 ',bcdef%ux0
write(*,'(a,e11.4)') shift//'ux1 ',bcdef%ux1
write(*,'(a,e11.4)') shift//'vx0 ',bcdef%vx0
write(*,'(a,e11.4)') shift//'vx1 ',bcdef%vx1
write(*,'(a,e11.4)') shift//'wx0 ',bcdef%wx0
write(*,'(a,e11.4)') shift//'wx1 ',bcdef%wx1
write(*,'(a,e11.4)') shift//'uy0 ',bcdef%uy0
write(*,'(a,e11.4)') shift//'uy1 ',bcdef%uy1
write(*,'(a,e11.4)') shift//'vy0 ',bcdef%vy0
write(*,'(a,e11.4)') shift//'vy1 ',bcdef%vy1
write(*,'(a,e11.4)') shift//'wy0 ',bcdef%wy0
write(*,'(a,e11.4)') shift//'wy1 ',bcdef%wy1
write(*,'(a,e11.4)') shift//'uz0 ',bcdef%uz0
write(*,'(a,e11.4)') shift//'uz1 ',bcdef%uz1
write(*,'(a,e11.4)') shift//'vz0 ',bcdef%vz0
write(*,'(a,e11.4)') shift//'vz1 ',bcdef%vz1
write(*,'(a,e11.4)') shift//'wz0 ',bcdef%wz0
write(*,'(a,e11.4)') shift//'wz1 ',bcdef%wz1
case('segmented_s_line')
write(*,'(a)') shift//'Boundary condition parameters'
do i=1,12
write(*,'(a,i2,a,e11.4)') shift//'bc_parameter ',i,' ',bcdef%bc_parameters(i)
enddo
end select
write(*,'(a,e11.4)') shift//'utrans ',bcdef%utrans
write(*,'(a,e11.4)') shift//'vtrans ',bcdef%vtrans
write(*,'(a)') shift//'--- PRESSURE ---'
write(*,'(a,i4)') shift//'smoothing_type ',params%smoothing_type
write(*,'(a,e11.4)') shift//'pressure0 ',params%pressure0
write(*,'(a,e11.4)') shift//'plastic_stress_min ',params%plastic_stress_min
write(*,'(a)') shift//'--- CLOUD ---'
write(*,'(a,i4)') shift//'npmin ',params%npmin
write(*,'(a,i4)') shift//'npmax ',params%npmax
write(*,'(a)') shift//'--- FEM + DIVFEM + MUMPS/WSMP ---'
write(*,'(a,i4)') shift//'matrule ',params%matrule
write(*,'(a,i4)') shift//'levelcut ',params%levelcut
write(*,'(a,i4)') shift//'levelapprox ',params%levelapprox
write(*,'(a,e11.4)') shift//'penalty ',params%penalty
write(*,'(a,l1)') shift//'excl_vol ',params%excl_vol
write(*,'(a)') shift//'--- TEMPERATURE ---'
write(*,'(a,l1)') shift//'calculate_temp ',params%calculate_temp
write(*,'(a,e11.4)') shift//'ztemp ',params%ztemp
write(*,'(a,e11.4)') shift//'tempscale ',params%tempscale
write(*,'(a)') shift//'--- ISOSTASY ---'
write(*,'(a,l1)') shift//'isostasy ',params%isostasy
write(*,'(a,l1)') shift//'flexure ',params%flexure
write(*,'(a,e11.4)') shift//'elastic_plate_thickness ',params%elastic_plate_thickness
write(*,'(a,e11.4)') shift//'density_difference ',params%density_difference
write(*,'(a,l1)') shift//'isobc ',params%isobc
write(*,'(a)') shift//'--- MATERIALS ---'
write(*,'(a,l1)') shift//'materials_on_cloud ',params%materials_on_cloud
write(*,'(a,i4)') shift//'material0 ',material0
write(*,'(a,l1)') shift//'bulkvisc ',params%bulkvisc
write(*,'(a,l1)') shift//'init_e2d ',params%init_e2d
write(*,'(a,e11.4)') shift//'e2d0 ',params%e2d0
Dave Whipp
committed
write(*,'(a,i4)') shift//'dommat ',params%dommat
Dave Whipp
committed
write(*,'(a,e11.4)') shift//'domvol ',params%domvol
Dave Whipp
committed
do i=1,params%nmat
write(*,'(a,i4,a)') shift//'--- Properties for material ',i,' ---'
write(*,'(a,e11.4)') shift//'density ',mat(i)%density
write(*,'(a,e11.4)') shift//'viscosity ',mat(i)%viscosity
write(*,'(a,e11.4)') shift//'penalty ',mat(i)%penalty
write(*,'(a,e11.4)') shift//'expon ',mat(i)%expon
write(*,'(a,e11.4)') shift//'fviscosity ',mat(i)%fviscosity
write(*,'(a,a16)') shift//'fvisc_weak_type ',mat(i)%fvisc_weak_type
write(*,'(a,e11.4)') shift//'fvisc_weak_onset ',mat(i)%fvisc_weak_onset
write(*,'(a,e11.4)') shift//'fvisc_weak_end ',mat(i)%fvisc_weak_end
write(*,'(a,e11.4)') shift//'fvisc_weak_final ',mat(i)%fvisc_weak_final
write(*,'(a,e11.4)') shift//'diffusivity ',mat(i)%diffusivity
write(*,'(a,e11.4)') shift//'heat ',mat(i)%heat
write(*,'(a,e11.4)') shift//'activationenergy ',mat(i)%activationenergy
write(*,'(a,e11.4)') shift//'expansion ',mat(i)%expansion
write(*,'(a,a8)') shift//'plasticity_type ',mat(i)%plasticity_type
write(*,'(a,a16)') shift//'plasticity_ss_type_coh ',mat(i)%plasticity_ss_type_coh
write(*,'(a,a16)') shift//'plasticity_ss_type_phi ',mat(i)%plasticity_ss_type_phi
Dave Whipp
committed
if (trim(mat(i)%plasticity_type).ne.'No') then
write(*,'(a,i4)') shift//'Plasticity parameters for material ',i
do j=1,9
write(*,'(a,i1,a2,e11.4)') shift//'plasticity parameter ',j,' ',mat(i)%plasticity_parameters(j)
Dave Whipp
committed
enddo
endif
Dave Whipp
committed
write (*,'(a,i4)') shift//'Material transitions for material ',i
do j=1,6
write(*,'(a,i1,a2,e11.4)') shift//'mattrans ',j,' ',mat(i)%mattrans(j)
Dave Whipp
committed
enddo
do j=1,6
write(*,'(a,i1,a2,i4)') shift//'transnum ',j,' ',mat(i)%transnum(j)
Dave Whipp
committed
enddo
Dave Whipp
committed
enddo
write(*,'(a,e11.4)') shift//'viscositymin ',params%viscositymin
write(*,'(a,e11.4)') shift//'viscositymax ',params%viscositymax
write(*,'(a)') shift//'--- SURFACES ---'
write(*,'(a,l1)') shift//'remove_surf_pts ',params%remove_surf_pts
Dave Whipp
committed
do i=1,params%ns
write(*,'(a,i4,a)') shift//'--- Properties for surface ',i,' ---'
write(*,'(a,i4,a,i4)') shift//'surface ',i,' levelt ',surface(i)%levelt
write(*,'(a,i4,a,i4)') shift//'surface ',i,' itype ',surface(i)%itype
Dave Whipp
committed
write(*,'(a,i4,a,i4)') shift//'surface ',i,' closed ',surface(i)%closed
write(*,'(a,i4,a,i4)') shift//'surface ',i,' type ',surface(i)%surface_type
write(*,'(a,i4,a,l1)') shift//'surface ',i,' rand ',surface(i)%rand
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp01 ',surface(i)%sp01
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp02 ',surface(i)%sp02
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp03 ',surface(i)%sp03
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp04 ',surface(i)%sp04
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp05 ',surface(i)%sp05
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp06 ',surface(i)%sp06
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp07 ',surface(i)%sp07
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp08 ',surface(i)%sp08
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp09 ',surface(i)%sp09
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp10 ',surface(i)%sp10
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp11 ',surface(i)%sp11
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp12 ',surface(i)%sp12
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp13 ',surface(i)%sp13
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' sp14 ',surface(i)%sp14
write(*,'(a,i4,a,i4)') shift//'surface ',i,' material ',surface(i)%material
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' activation_time ',surface(i)%activation_time
write(*,'(a,i4,a,i4)') shift//'surface ',i,' leveloct ',surface(i)%leveloct
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' stretch ',surface(i)%stretch
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' anglemax ',surface(i)%anglemax
write(*,'(a,i4,a,i4)') shift//'surface ',i,' criterion ',surface(i)%criterion
write(*,'(a,i4,a,e11.4)') shift//'surface ',i,' anglemaxoctree ',surface(i)%anglemaxoctree
write(*,'(a,i4,a,i4)') shift//'surface ',i,' spread_surface_points ',surface(i)%spread_surface_points
write(*,'(a,i4,a,l1)') shift//'surface ',i,' fixed_surf_spinup ',surface(i)%fixed_surf_spinup
write(*,'(a,i4,a,l1)') shift//'surface ',i,' fixed_surf ',surface(i)%fixed_surf
Dave Whipp
committed
enddo
write(*,'(a,i4)') shift//'niter_move ',params%niter_move
write(*,'(a)') shift//'--- REFINEMENT IN BOXES ---'
Dave Whipp
committed
if (params%nboxes.gt.0) then
do i=1,params%nboxes
write(*,'(a,i3,a)') shift//'--- Input values for box ',i,' ---'
write(*,'(a,e11.4)') shift//'box x0 ',boxes(i)%x0
write(*,'(a,e11.4)') shift//'box x1 ',boxes(i)%x1
write(*,'(a,e11.4)') shift//'box y0 ',boxes(i)%y0
write(*,'(a,e11.4)') shift//'box y1 ',boxes(i)%y1
write(*,'(a,e11.4)') shift//'box z0 ',boxes(i)%z0
write(*,'(a,e11.4)') shift//'box z1 ',boxes(i)%z1
write(*,'(a,i4)') shift//'box level ',boxes(i)%level
Dave Whipp
committed
enddo
endif
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
write(*,'(a)') shift//'--- REFINEMENT ON CUBE FACES ---'
write(*,'(a,l1)') shift//'ref_on_faces ',params%ref_on_faces
if (params%ref_on_faces) then
do i=1,6
write(*,'(a,i1,a)') shift//'--- Refinement values for face ',i,' ---'
write(*,'(a,i4)') shift//'cube_faces level ',cube_faces(i)%level
write(*,'(a,e11.4)') shift//'cube_faces b ',cube_faces(i)%b
write(*,'(a,e11.4)') shift//'cube_faces t ',cube_faces(i)%t
write(*,'(a,e11.4)') shift//'cube_faces l ',cube_faces(i)%l
write(*,'(a,e11.4)') shift//'cube_faces r ',cube_faces(i)%r
enddo
endif
write(*,'(a)') shift//'--- EROSION ---'
write(*,'(a,l1)') shift//'erosion ',params%erosion
write(*,'(a,e11.4)') shift//'zerosion ',params%zerosion
write(*,'(a,e11.4)') shift//'length_scale ',params%length_scale
write(*,'(a,e11.4)') shift//'velocity_scale ',params%velocity_scale
write(*,'(a,e11.4)') shift//'fluvial_erosion ',params%fluvial_erosion
write(*,'(a,e11.4)') shift//'diffusion_erosion ',params%diffusion_erosion
write(*,'(a,i4)') shift//'baselevelx0 ',params%baselevelx0
write(*,'(a,i4)') shift//'baselevelx1 ',params%baselevelx1
write(*,'(a,i4)') shift//'baselevely0 ',params%baselevely0
write(*,'(a,i4)') shift//'baselevely1 ',params%baselevely1
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
write(*,'(a)') shift//'--- SEDIMENTATION ---'
write(*,'(a,l1)') shift//'sedimentation ',params%sedimentation
write(*,'(a,i4)') shift//'sedimentation_type ',params%sedimentation_type
write(*,'(a,e11.4)') shift//'er_start ',params%er_start
write(*,'(a,e11.4)') shift//'er_end ',params%er_end
write(*,'(a,e11.4)') shift//'sed_start ',params%sed_start
write(*,'(a,e11.4)') shift//'sed_end ',params%sed_end
write(*,'(a,e11.4)') shift//'zaggrade_init ',params%zaggrade_init
write(*,'(a,e11.4)') shift//'x_agg_start ',params%x_agg_start
write(*,'(a,e11.4)') shift//'x_agg_end ',params%x_agg_end
write(*,'(a,e11.4)') shift//'y_agg_start ',params%y_agg_start
write(*,'(a,e11.4)') shift//'y_agg_end ',params%y_agg_end
write(*,'(a,e11.4)') shift//'x_agg_sinus_amp ',params%x_agg_sinus_amp
write(*,'(a,e11.4)') shift//'x_agg_sinus_wavelth ',params%x_agg_sinus_wavelth
write(*,'(a,e11.4)') shift//'y_agg_sinus_amp ',params%y_agg_sinus_amp
write(*,'(a,e11.4)') shift//'y_agg_sinus_wavelth ',params%y_agg_sinus_wavelth
write(*,'(a,e11.4)') shift//'aggrade_rate ',params%aggrade_rate
write(*,'(a,e11.4)') shift//'z_prog_init ',params%z_prog_init
write(*,'(a,e11.4)') shift//'z_prog_fin ',params%z_prog_fin
write(*,'(a,e11.4)') shift//'x_prog_start ',params%x_prog_start
write(*,'(a,e11.4)') shift//'x_prog_end ',params%x_prog_end
write(*,'(a,e11.4)') shift//'x_prog_length ',params%x_prog_length
write(*,'(a,e11.4)') shift//'prog_rate_u ',params%prog_rate_u
write(*,'(a)') shift//'--- MATRIX VISUALISATION ---'
write(*,'(a,l1)') shift//'visualise_matrix ',params%visualise_matrix
write(*,'(a)') shift//'--- CROSS SECTIONS ---'
Dave Whipp
committed
if (params%nsections.gt.0) then
do i=1,params%nsections
write(*,'(a,i3,a)') shift//'--- Input values for section ',i,' ---'
write(*,'(a,i4)') shift//'section xyz ',sections(i)%xyz
write(*,'(a,e11.4)') shift//'section slice ',sections(i)%slice
write(*,'(a,l1)') shift//'section flag press ',sections(i)%flag_press
write(*,'(a,l1)') shift//'section flag spress ',sections(i)%flag_spress
write(*,'(a,l1)') shift//'section flag e2d ',sections(i)%flag_e2d
write(*,'(a,l1)') shift//'section flag e3d ',sections(i)%flag_e3d
write(*,'(a,l1)') shift//'section flag strain ',sections(i)%flag_strain
write(*,'(a,l1)') shift//'section flag lode ',sections(i)%flag_lode
write(*,'(a,l1)') shift//'section flag crit ',sections(i)%flag_crit
write(*,'(a,l1)') shift//'section flag grid ',sections(i)%flag_grid
write(*,'(a,l1)') shift//'section flag mu ',sections(i)%flag_mu
write(*,'(a,l1)') shift//'section flag u ',sections(i)%flag_u
write(*,'(a,l1)') shift//'section flag v ',sections(i)%flag_v
write(*,'(a,l1)') shift//'section flag w ',sections(i)%flag_w
write(*,'(a,l1)') shift//'section flag q ',sections(i)%flag_q
write(*,'(a,l1)') shift//'section flag uvw ',sections(i)%flag_uvw
write(*,'(a,l1)') shift//'section flag lsf ',sections(i)%flag_lsf
write(*,'(a,l1)') shift//'section flag vfield ',sections(i)%flag_vfield
write(*,'(a,l1)') shift//'section flag colour ',sections(i)%flag_colour
write(*,'(a,l1)') shift//'section flag plastic ',sections(i)%flag_plastic
write(*,'(a,i3)') shift//'section flag temp ',sections(i)%flag_temp
write(*,'(a,l1)') shift//'section flag velvect ',sections(i)%flag_velvect
write(*,'(a,e11.4)') shift//'section scale ',sections(i)%scale
write(*,'(a,a3)') shift//'section colormap ',sections(i)%colormap
write(*,'(a,i4)') shift//'section ncolours ',sections(i)%ncolours
Dave Whipp
committed
enddo
endif
!write(*,'(a,e11.4)') shift//'distance_exponent ',params%distance_exponent
write(*,'(a)') shift//'--------------------------------------------------------------------------------'
write(*,'(a)') shift//'--- END OF INPUT FILE ---'
write(*,'(a)') shift//'--------------------------------------------------------------------------------'
endif
if (params%debug.gt.1) then
write(threadinfo%Logunit,'(a)') '--- ADDITIONAL CONTROLLING PARAMETERS ---'
write(threadinfo%Logunit,'(a32,l1)') 'compute_qpgram ',params%compute_qpgram
write(threadinfo%Logunit,'(a)') '--- SPINUP PHASE ---'
write(threadinfo%Logunit,'(a32,i4)') 'nstep_spinup ',params%nstep_spinup
write(threadinfo%Logunit,'(a32,e11.4)') 'dt_spinup ',params%dt_spinup
write(threadinfo%Logunit,'(a32,i4)') 'griditer_spinup ',params%griditer_spinup
write(threadinfo%Logunit,'(a32,i4)') 'nonlinear_iterations_spinup ',params%nonlinear_iterations_spinup
write(threadinfo%Logunit,'(a32,e11.4)') 'tol_spinup ',params%tol_spinup
write(threadinfo%Logunit,'(a32,l1)') 'sstemp_spinup ',params%sstemp_spinup
write(threadinfo%Logunit,'(a32,e11.4)') 'sstemp_viscosity_spinup ',params%sstemp_viscosity_spinup
write(threadinfo%Logunit,'(a32,l1)') 'all_surf_fixed_spinup ',params%all_surf_fixed_spinup
do i=1,params%ns
write(threadinfo%Logunit,'(a32,i4,a,i4)') 'surface ',i,' material_spinup ',surface(i)%material_spinup
enddo
write(threadinfo%Logunit,'(a32,l1)') 'fixed_cloud_spinup ',params%fixed_cloud_spinup
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
write(threadinfo%Logunit,'(a)') '--- TIMESTEPPING ---'
write(threadinfo%Logunit,'(a32,e11.4)') 'dt_main ',params%dt_main
write(threadinfo%Logunit,'(a32,e11.4)') 'dt ',params%dt
write(threadinfo%Logunit,'(a32,i4)') 'nstep ',params%nstep
write(threadinfo%Logunit,'(a32,e11.4)') 'courant ',params%courant
write(threadinfo%Logunit,'(a32,l1)') 'normaladvect ',params%normaladvect
write(threadinfo%Logunit,'(a)') '--- GRID ITERATIONS ---'
write(threadinfo%Logunit,'(a32,i4)') 'griditer_main ',params%griditer_main
write(threadinfo%Logunit,'(a32,i4)') 'griditer ',params%griditer
write(threadinfo%Logunit,'(a32,e11.4)') 'octree_refine_ratio ',params%octree_refine_ratio
write(threadinfo%Logunit,'(a)') '--- NONLINEAR ITERATIONS ---'
write(threadinfo%Logunit,'(a32,i4)') 'nonlinear_iterations_main ',params%nonlinear_iterations_main
write(threadinfo%Logunit,'(a32,i4)') 'nonlinear_iterations ',params%nonlinear_iterations
write(threadinfo%Logunit,'(a32,i4)') 'nb_iter_nl_min ',params%nb_iter_nl_min
write(threadinfo%Logunit,'(a32,e11.4)') 'tol ',params%tol
write(threadinfo%Logunit,'(a32,l1)') 'adaptive_tol ',params%adaptive_tol
write(threadinfo%Logunit,'(a)') '--- OCTREES ---'
write(threadinfo%Logunit,'(a32,i4)') 'leveluniform_oct ',params%leveluniform_oct
write(threadinfo%Logunit,'(a32,i4)') 'levelmax_oct ',params%levelmax_oct
write(threadinfo%Logunit,'(a32,e11.4)') 'vex ',params%vex
write(threadinfo%Logunit,'(a32,l1)') 'ismooth ',params%ismooth
write(threadinfo%Logunit,'(a32,i12)') 'noctreemax ',params%noctreemax
write(threadinfo%Logunit,'(a32,e11.4)') 'refine_ratio ',params%refine_ratio
write(threadinfo%Logunit,'(a32,i4)') 'refine_criterion ',params%refine_criterion
write(threadinfo%Logunit,'(a32,i4)') 'initial_refine_level ',params%initial_refine_level
write(threadinfo%Logunit,'(a32,l1)') 'renumber_nodes ',params%renumber_nodes
write(threadinfo%Logunit,'(a)') '--- NESTED MODEL PARAMETERS ---'
write(threadinfo%Logunit,'(a32,l1)') 'nest ',params%nest
if (params%nest) then
write(threadinfo%Logunit,'(a32,a)') 'ssoutdir ',trim(nest%ssoutdir)
write(threadinfo%Logunit,'(a32,a)') 'lsoutfile ',trim(nest%lsoutfile)
write(threadinfo%Logunit,'(a32,e11.4)') 'sselemx ',nest%sselemx
write(threadinfo%Logunit,'(a32,e11.4)') 'sselemy ',nest%sselemy
write(threadinfo%Logunit,'(a32,e11.4)') 'sselemz ',nest%sselemz
write(threadinfo%Logunit,'(a32,e11.4)') 'xminls ',nest%xminls
write(threadinfo%Logunit,'(a32,e11.4)') 'yminls ',nest%yminls
write(threadinfo%Logunit,'(a32,e11.4)') 'zminls ',nest%zminls
write(threadinfo%Logunit,'(a32,e11.4)') 'sselemx0 ',nest%sselemx0
write(threadinfo%Logunit,'(a32,e11.4)') 'sselemy0 ',nest%sselemy0
write(threadinfo%Logunit,'(a32,e11.4)') 'sselemz0 ',nest%sselemz0
endif
write(threadinfo%Logunit,'(a)') '--- BOUNDARY CONDITIONS AND VELOCITY CONSTRAINTS ---'
write(threadinfo%Logunit,'(a32,l1)') 'invariants_2d ',params%invariants_2d
write(threadinfo%Logunit,'(a32,l1)') 'damp_surface ',params%damp_surface
write(threadinfo%Logunit,'(a32,e11.4)') 'damp_factor ',params%damp_factor
write(threadinfo%Logunit,'(a)') '--- Boundary condition parameters ---'
write(threadinfo%Logunit,'(a32,a)') 'bctype ',bcdef%bctype
select case(trim(bcdef%bctype))
case('basic')
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
write(threadinfo%Logunit,'(a32,a)') 'bcorder ',bcdef%bcorder
write(threadinfo%Logunit,'(a32,l1)') 'fixux0 ',bcdef%fixux0
write(threadinfo%Logunit,'(a32,l1)') 'fixux1 ',bcdef%fixux1
write(threadinfo%Logunit,'(a32,l1)') 'fixvx0 ',bcdef%fixvx0
write(threadinfo%Logunit,'(a32,l1)') 'fixvx1 ',bcdef%fixvx1
write(threadinfo%Logunit,'(a32,l1)') 'fixwx0 ',bcdef%fixwx0
write(threadinfo%Logunit,'(a32,l1)') 'fixwx1 ',bcdef%fixwx1
write(threadinfo%Logunit,'(a32,l1)') 'fixuy0 ',bcdef%fixuy0
write(threadinfo%Logunit,'(a32,l1)') 'fixuy1 ',bcdef%fixuy1
write(threadinfo%Logunit,'(a32,l1)') 'fixvy0 ',bcdef%fixvy0
write(threadinfo%Logunit,'(a32,l1)') 'fixvy1 ',bcdef%fixvy1
write(threadinfo%Logunit,'(a32,l1)') 'fixwy0 ',bcdef%fixwy0
write(threadinfo%Logunit,'(a32,l1)') 'fixwy1 ',bcdef%fixwy1
write(threadinfo%Logunit,'(a32,l1)') 'fixuz0 ',bcdef%fixuz0
write(threadinfo%Logunit,'(a32,l1)') 'fixuz1 ',bcdef%fixuz1
write(threadinfo%Logunit,'(a32,l1)') 'fixvz0 ',bcdef%fixvz0
write(threadinfo%Logunit,'(a32,l1)') 'fixvz1 ',bcdef%fixvz1
write(threadinfo%Logunit,'(a32,l1)') 'fixwz0 ',bcdef%fixwz0
write(threadinfo%Logunit,'(a32,l1)') 'fixwz1 ',bcdef%fixwz1
write(threadinfo%Logunit,'(a32,e11.4)') 'ux0 ',bcdef%ux0
write(threadinfo%Logunit,'(a32,e11.4)') 'ux1 ',bcdef%ux1
write(threadinfo%Logunit,'(a32,e11.4)') 'vx0 ',bcdef%vx0
write(threadinfo%Logunit,'(a32,e11.4)') 'vx1 ',bcdef%vx1
write(threadinfo%Logunit,'(a32,e11.4)') 'wx0 ',bcdef%wx0
write(threadinfo%Logunit,'(a32,e11.4)') 'wx1 ',bcdef%wx1
write(threadinfo%Logunit,'(a32,e11.4)') 'uy0 ',bcdef%uy0
write(threadinfo%Logunit,'(a32,e11.4)') 'uy1 ',bcdef%uy1
write(threadinfo%Logunit,'(a32,e11.4)') 'vy0 ',bcdef%vy0
write(threadinfo%Logunit,'(a32,e11.4)') 'vy1 ',bcdef%vy1
write(threadinfo%Logunit,'(a32,e11.4)') 'wy0 ',bcdef%wy0
write(threadinfo%Logunit,'(a32,e11.4)') 'wy1 ',bcdef%wy1
write(threadinfo%Logunit,'(a32,e11.4)') 'uz0 ',bcdef%uz0
write(threadinfo%Logunit,'(a32,e11.4)') 'uz1 ',bcdef%uz1
write(threadinfo%Logunit,'(a32,e11.4)') 'vz0 ',bcdef%vz0
write(threadinfo%Logunit,'(a32,e11.4)') 'vz1 ',bcdef%vz1
write(threadinfo%Logunit,'(a32,e11.4)') 'wz0 ',bcdef%wz0
write(threadinfo%Logunit,'(a32,e11.4)') 'wz1 ',bcdef%wz1
write(threadinfo%Logunit,'(a)') 'Boundary condition parameters'
write(threadinfo%Logunit,'(a32,i2,a,e11.4)') 'bc_parameter ',i,' ',bcdef%bc_parameters(i)
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
write(threadinfo%Logunit,'(a32,e11.4)') 'utrans ',bcdef%utrans
write(threadinfo%Logunit,'(a32,e11.4)') 'vtrans ',bcdef%vtrans
write(threadinfo%Logunit,'(a)') '--- PRESSURE ---'
write(threadinfo%Logunit,'(a32,i4)') 'smoothing_type ',params%smoothing_type
write(threadinfo%Logunit,'(a32,e11.4)') 'pressure0 ',params%pressure0
write(threadinfo%Logunit,'(a32,e11.4)') 'plastic_stress_min ',params%plastic_stress_min
write(threadinfo%Logunit,'(a)') '--- CLOUD ---'
write(threadinfo%Logunit,'(a32,i4)') 'npmin ',params%npmin
write(threadinfo%Logunit,'(a32,i4)') 'npmax ',params%npmax
write(threadinfo%Logunit,'(a)') '--- FEM + DIVFEM + MUMPS/WSMP ---'
write(threadinfo%Logunit,'(a32,i4)') 'matrule ',params%matrule
write(threadinfo%Logunit,'(a32,i4)') 'levelcut ',params%levelcut
write(threadinfo%Logunit,'(a32,i4)') 'levelapprox ',params%levelapprox
write(threadinfo%Logunit,'(a32,e11.4)') 'penalty ',params%penalty
write(threadinfo%Logunit,'(a32,l1)') 'excl_vol ',params%excl_vol
write(threadinfo%Logunit,'(a)') '--- TEMPERATURE ---'
write(threadinfo%Logunit,'(a32,l1)') 'calculate_temp ',params%calculate_temp
write(threadinfo%Logunit,'(a32,e11.4)') 'ztemp ',params%ztemp
write(threadinfo%Logunit,'(a32,e11.4)') 'tempscale ',params%tempscale
write(threadinfo%Logunit,'(a)') '--- ISOSTASY ---'
write(threadinfo%Logunit,'(a32,l1)') 'isostasy ',params%isostasy
write(threadinfo%Logunit,'(a32,l1)') 'flexure ',params%flexure
write(threadinfo%Logunit,'(a32,e11.4)') 'elastic_plate_thickness ',params%elastic_plate_thickness
write(threadinfo%Logunit,'(a32,e11.4)') 'density_difference ',params%density_difference
write(threadinfo%Logunit,'(a32,l1)') 'isobc ',params%isobc
write(threadinfo%Logunit,'(a)') '--- MATERIALS ---'
write(threadinfo%Logunit,'(a32,l1)') 'materials_on_cloud ',params%materials_on_cloud
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,i4)') 'material0 ',material0
write(threadinfo%Logunit,'(a32,l1)') 'bulkvisc ',params%bulkvisc
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,l1)') 'init_e2d ',params%init_e2d
write(threadinfo%Logunit,'(a32,e11.4)') 'e2d0 ',params%e2d0
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,i4)') 'dommat ',params%dommat
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,e11.4)') 'domvol ',params%domvol
Dave Whipp
committed
do i=1,params%nmat
write(threadinfo%Logunit,'(a,i4,a)') '--- Properties for material ',i,' ---'
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,e11.4)') 'density ',mat(i)%density
write(threadinfo%Logunit,'(a32,e11.4)') 'viscosity ',mat(i)%viscosity
write(threadinfo%Logunit,'(a32,e11.4)') 'penalty ',mat(i)%penalty
write(threadinfo%Logunit,'(a32,e11.4)') 'expon ',mat(i)%expon
write(threadinfo%Logunit,'(a32,e11.4)') 'fviscosity ',mat(i)%fviscosity
write(threadinfo%Logunit,'(a32,a16)') 'fvisc_weak_type ',mat(i)%fvisc_weak_type
write(threadinfo%Logunit,'(a32,e11.4)') 'fvisc_weak_onset ',mat(i)%fvisc_weak_onset
write(threadinfo%Logunit,'(a32,e11.4)') 'fvisc_weak_end ',mat(i)%fvisc_weak_end
write(threadinfo%Logunit,'(a32,e11.4)') 'fvisc_weak_final ',mat(i)%fvisc_weak_final
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,e11.4)') 'diffusivity ',mat(i)%diffusivity
write(threadinfo%Logunit,'(a32,e11.4)') 'heat ',mat(i)%heat
write(threadinfo%Logunit,'(a32,e11.4)') 'activationenergy ',mat(i)%activationenergy
write(threadinfo%Logunit,'(a32,e11.4)') 'expansion ',mat(i)%expansion
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,a8)') 'plasticity_type ',mat(i)%plasticity_type
write(threadinfo%Logunit,'(a32,a16)') 'plasticity_ss_type_coh ',mat(i)%plasticity_ss_type_coh
write(threadinfo%Logunit,'(a32,a16)') 'plasticity_ss_type_phi ',mat(i)%plasticity_ss_type_phi
Dave Whipp
committed
if (trim(mat(i)%plasticity_type).ne.'No') then
write(threadinfo%Logunit,'(a,i4)') 'Plasticity parameters for material ',i
do j=1,9
write(threadinfo%Logunit,'(a32,i1,a2,e11.4)') 'plasticity parameter ',j,': ',mat(i)%plasticity_parameters(j)
enddo
endif
Dave Whipp
committed
write (threadinfo%Logunit,'(a,i4)') 'Material transitions for material ',i
do j=1,6
write(threadinfo%Logunit,'(a32,i1,a2,e11.4)') 'mattrans ',j,' ',mat(i)%mattrans(j)
Dave Whipp
committed
enddo
do j=1,6
write(threadinfo%Logunit,'(a32,i1,a2,i4)') 'transnum ',j,' ',mat(i)%transnum(j)
Dave Whipp
committed
enddo
Dave Whipp
committed
enddo
write(threadinfo%Logunit,'(a32,e11.4)') 'viscositymin ',params%viscositymin
write(threadinfo%Logunit,'(a32,e11.4)') 'viscositymax ',params%viscositymax
write(threadinfo%Logunit,'(a)') '--- SURFACES ---'
write(threadinfo%Logunit,'(a32,l1)') 'remove_surf_pts ',params%remove_surf_pts
Dave Whipp
committed
do i=1,params%ns
write(threadinfo%Logunit,'(a,i4,a)') '--- Properties for surface ',i,' ---'
write(threadinfo%Logunit,'(a32,i4,a,i4)') 'surface ',i,' levelt ',surface(i)%levelt
write(threadinfo%Logunit,'(a32,i4,a,i4)') 'surface ',i,' itype ',surface(i)%itype
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,i4,a,i4)') 'surface ',i,' closed ',surface(i)%closed
write(threadinfo%Logunit,'(a32,i4,a,i4)') 'surface ',i,' type ',surface(i)%surface_type
write(threadinfo%Logunit,'(a32,i4,a,l1)') 'surface ',i,' rand ',surface(i)%rand
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp01 ',surface(i)%sp01
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp02 ',surface(i)%sp02
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp03 ',surface(i)%sp03
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp04 ',surface(i)%sp04
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp05 ',surface(i)%sp05
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp06 ',surface(i)%sp06
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp07 ',surface(i)%sp07
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp08 ',surface(i)%sp08
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp09 ',surface(i)%sp09
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp10 ',surface(i)%sp10
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp11 ',surface(i)%sp11
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp12 ',surface(i)%sp12
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp13 ',surface(i)%sp13
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' sp14 ',surface(i)%sp14
write(threadinfo%Logunit,'(a32,i4,a,i4)') 'surface ',i,' material ',surface(i)%material
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' activation_time ',surface(i)%activation_time
write(threadinfo%Logunit,'(a32,i4,a,i4)') 'surface ',i,' leveloct ',surface(i)%leveloct
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' stretch ',surface(i)%stretch
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' anglemax ',surface(i)%anglemax
write(threadinfo%Logunit,'(a32,i4,a,i4)') 'surface ',i,' criterion ',surface(i)%criterion
write(threadinfo%Logunit,'(a32,i4,a,e11.4)') 'surface ',i,' anglemaxoctree ',surface(i)%anglemaxoctree
write(threadinfo%Logunit,'(a32,i4,a,i4)') 'surface ',i,' spread_surface_points ',surface(i)%spread_surface_points
write(threadinfo%Logunit,'(a32,i4,a,l1)') 'surface ',i,' fixed_surf_spinup ',surface(i)%fixed_surf_spinup
write(threadinfo%Logunit,'(a32,i4,a,l1)') 'surface ',i,' fixed_surf ',surface(i)%fixed_surf
Dave Whipp
committed
enddo
write(threadinfo%Logunit,'(a32,i4)') 'niter_move ',params%niter_move
write(threadinfo%Logunit,'(a)') '--- REFINEMENT IN BOXES ---'
Dave Whipp
committed
if (params%nboxes.gt.0) then
do i=1,params%nboxes
write(threadinfo%Logunit,'(a,i3,a)') '--- Input values for box ',i,' ---'
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,e11.4)') 'box x0 ',boxes(i)%x0
write(threadinfo%Logunit,'(a32,e11.4)') 'box x1 ',boxes(i)%x1
write(threadinfo%Logunit,'(a32,e11.4)') 'box y0 ',boxes(i)%y0
write(threadinfo%Logunit,'(a32,e11.4)') 'box y1 ',boxes(i)%y1
write(threadinfo%Logunit,'(a32,e11.4)') 'box z0 ',boxes(i)%z0
write(threadinfo%Logunit,'(a32,e11.4)') 'box z1 ',boxes(i)%z1
write(threadinfo%Logunit,'(a32,i4)') 'box level ',boxes(i)%level
enddo
endif
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
write(threadinfo%Logunit,'(a)') '--- REFINEMENT ON CUBE FACES ---'
write(threadinfo%Logunit,'(a32,l1)') 'ref_on_faces ',params%ref_on_faces
if (params%ref_on_faces) then
do i=1,6
write(threadinfo%Logunit,'(a,i1,a)') '--- Refinement values for face ',i,' ---'
write(threadinfo%Logunit,'(a32,i4)') 'cube_faces level ',cube_faces(i)%level
write(threadinfo%Logunit,'(a32,e11.4)') 'cube_faces b ',cube_faces(i)%b
write(threadinfo%Logunit,'(a32,e11.4)') 'cube_faces t ',cube_faces(i)%t
write(threadinfo%Logunit,'(a32,e11.4)') 'cube_faces l ',cube_faces(i)%l
write(threadinfo%Logunit,'(a32,e11.4)') 'cube_faces r ',cube_faces(i)%r
enddo
endif
write(threadinfo%Logunit,'(a)') '--- EROSION ---'
write(threadinfo%Logunit,'(a32,l1)') 'erosion ',params%erosion
write(threadinfo%Logunit,'(a32,e11.4)') 'zerosion ',params%zerosion
write(threadinfo%Logunit,'(a32,e11.4)') 'length_scale ',params%length_scale
write(threadinfo%Logunit,'(a32,e11.4)') 'velocity_scale ',params%velocity_scale
write(threadinfo%Logunit,'(a32,e11.4)') 'fluvial_erosion ',params%fluvial_erosion
write(threadinfo%Logunit,'(a32,e11.4)') 'diffusion_erosion ',params%diffusion_erosion
write(threadinfo%Logunit,'(a32,i4)') 'baselevelx0 ',params%baselevelx0
write(threadinfo%Logunit,'(a32,i4)') 'baselevelx1 ',params%baselevelx1
write(threadinfo%Logunit,'(a32,i4)') 'baselevely0 ',params%baselevely0
write(threadinfo%Logunit,'(a32,i4)') 'baselevely1 ',params%baselevely1
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
write(threadinfo%Logunit,'(a)') '--- SEDIMENTATION ---'
write(threadinfo%Logunit,'(a32,l1)') 'sedimentation ',params%sedimentation
write(threadinfo%Logunit,'(a32,i4)') 'sedimentation_type ',params%sedimentation_type
write(threadinfo%Logunit,'(a32,e11.4)') 'er_start ',params%er_start
write(threadinfo%Logunit,'(a32,e11.4)') 'er_end ',params%er_end
write(threadinfo%Logunit,'(a32,e11.4)') 'sed_start ',params%sed_start
write(threadinfo%Logunit,'(a32,e11.4)') 'sed_end ',params%sed_end
write(threadinfo%Logunit,'(a32,e11.4)') 'zaggrade_init ',params%zaggrade_init
write(threadinfo%Logunit,'(a32,e11.4)') 'x_agg_start ',params%x_agg_start
write(threadinfo%Logunit,'(a32,e11.4)') 'x_agg_end ',params%x_agg_end
write(threadinfo%Logunit,'(a32,e11.4)') 'y_agg_start ',params%y_agg_start
write(threadinfo%Logunit,'(a32,e11.4)') 'y_agg_end ',params%y_agg_end
write(threadinfo%Logunit,'(a32,e11.4)') 'x_agg_sinus_amp ',params%x_agg_sinus_amp
write(threadinfo%Logunit,'(a32,e11.4)') 'x_agg_sinus_wavelth ',params%x_agg_sinus_wavelth
write(threadinfo%Logunit,'(a32,e11.4)') 'y_agg_sinus_amp ',params%y_agg_sinus_amp
write(threadinfo%Logunit,'(a32,e11.4)') 'y_agg_sinus_wavelth ',params%y_agg_sinus_wavelth
write(threadinfo%Logunit,'(a32,e11.4)') 'aggrade_rate ',params%aggrade_rate
write(threadinfo%Logunit,'(a32,e11.4)') 'z_prog_init ',params%z_prog_init
write(threadinfo%Logunit,'(a32,e11.4)') 'z_prog_fin ',params%z_prog_fin
write(threadinfo%Logunit,'(a32,e11.4)') 'x_prog_start ',params%x_prog_start
write(threadinfo%Logunit,'(a32,e11.4)') 'x_prog_end ',params%x_prog_end
write(threadinfo%Logunit,'(a32,e11.4)') 'x_prog_length ',params%x_prog_length
write(threadinfo%Logunit,'(a32,e11.4)') 'prog_rate_u ',params%prog_rate_u
write(threadinfo%Logunit,'(a)') '--- MATRIX VISUALISATION ---'
write(threadinfo%Logunit,'(a32,l1)') 'visualise_matrix ',params%visualise_matrix
write(threadinfo%Logunit,'(a)') '--- CROSS SECTIONS ---'
Dave Whipp
committed
if (params%nsections.gt.0) then
do i=1,params%nsections
write(threadinfo%Logunit,'(a,i3,a)') '--- Input values for section ',i,' ---'
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,i4)') 'section xyz ',sections(i)%xyz
write(threadinfo%Logunit,'(a32,e11.4)') 'section slice ',sections(i)%slice
write(threadinfo%Logunit,'(a32,l1)') 'section flag press ',sections(i)%flag_press
write(threadinfo%Logunit,'(a32,l1)') 'section flag spress ',sections(i)%flag_spress
write(threadinfo%Logunit,'(a32,l1)') 'section flag e2d ',sections(i)%flag_e2d
write(threadinfo%Logunit,'(a32,l1)') 'section flag e3d ',sections(i)%flag_e3d
write(threadinfo%Logunit,'(a32,l1)') 'section flag strain ',sections(i)%flag_strain
write(threadinfo%Logunit,'(a32,l1)') 'section flag lode ',sections(i)%flag_lode
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,l1)') 'section flag crit ',sections(i)%flag_crit
write(threadinfo%Logunit,'(a32,l1)') 'section flag grid ',sections(i)%flag_grid
write(threadinfo%Logunit,'(a32,l1)') 'section flag mu ',sections(i)%flag_mu
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,l1)') 'section flag u ',sections(i)%flag_u
write(threadinfo%Logunit,'(a32,l1)') 'section flag v ',sections(i)%flag_v
write(threadinfo%Logunit,'(a32,l1)') 'section flag w ',sections(i)%flag_w
write(threadinfo%Logunit,'(a32,l1)') 'section flag q ',sections(i)%flag_q
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,l1)') 'section flag uvw ',sections(i)%flag_uvw
write(threadinfo%Logunit,'(a32,l1)') 'section flag lsf ',sections(i)%flag_lsf
write(threadinfo%Logunit,'(a32,l1)') 'section flag vfield ',sections(i)%flag_vfield
Dave Whipp
committed
write(threadinfo%Logunit,'(a32,l1)') 'section flag colour ',sections(i)%flag_colour
write(threadinfo%Logunit,'(a32,l1)') 'section flag plastic ',sections(i)%flag_plastic
write(threadinfo%Logunit,'(a32,i3)') 'section flag temp ',sections(i)%flag_temp
write(threadinfo%Logunit,'(a32,l1)') 'section flag velvect ',sections(i)%flag_velvect
write(threadinfo%Logunit,'(a32,e11.4)') 'section scale ',sections(i)%scale
write(threadinfo%Logunit,'(a32,a3)') 'section colormap ',sections(i)%colormap
write(threadinfo%Logunit,'(a32,i4)') 'section ncolours ',sections(i)%ncolours
enddo
endif
!write(threadinfo%Logunit,'(a32,e11.4)') 'distance_exponent ',params%distance_exponent
write(threadinfo%Logunit,'(a)') '--------------------------------------------------------------------------------'
write(threadinfo%Logunit,'(a)') '--- END OF INPUT FILE ---'
write(threadinfo%Logunit,'(a)') '--------------------------------------------------------------------------------'
Dave Whipp
committed
endif
if(iproc.eq.0) call flush(8)
if(params%debug.gt.1) call flush(threadinfo%logunit)
if (iproc.eq.0) call system ('rm fort.8')
!------------------------------------------------------------------------------|
!------------------------------------------------------------------------------|