|
| 1 | +@echo off |
| 2 | +set exe=%1 |
| 3 | +set option=%2 |
| 4 | +setlocal |
| 5 | + |
| 6 | +cd ..\..\..\fds\Verification |
| 7 | +set verdir=%CD% |
| 8 | + |
| 9 | +cd ..\..\smv\Verification |
| 10 | +set smvverdir=%CD% |
| 11 | + |
| 12 | +cd %verdir% |
| 13 | + |
| 14 | +set run=call :runit %exe% %option% |
| 15 | + |
| 16 | + |
| 17 | +%run% Adaptive_Mesh_Refinement random_meshes |
| 18 | +%run% Aerosols propane_flame_deposition |
| 19 | +%run% Complex_Geometry geom_simple |
| 20 | +%run% Complex_Geometry geom_obst |
| 21 | +%run% Complex_Geometry geom_sphere1a |
| 22 | +%run% Complex_Geometry geom_sphere1c |
| 23 | +%run% Complex_Geometry geom_sphere1e |
| 24 | +%run% Complex_Geometry geom_sphere3b |
| 25 | +%run% Complex_Geometry geom_sphere3d |
| 26 | +%run% Complex_Geometry geom_sphere3f |
| 27 | +%run% Complex_Geometry geom_sphere1b |
| 28 | +%run% Complex_Geometry geom_sphere1d |
| 29 | +%run% Complex_Geometry geom_sphere1f |
| 30 | +%run% Complex_Geometry geom_sphere3a |
| 31 | +%run% Complex_Geometry geom_sphere3c |
| 32 | +%run% Complex_Geometry geom_sphere3e |
| 33 | +%run% Complex_Geometry geom_terrain |
| 34 | +%run% Complex_Geometry geom_texture |
| 35 | +%run% Complex_Geometry geom_texture2 |
| 36 | +%run% Complex_Geometry geom_texture3a |
| 37 | +%run% Complex_Geometry geom_texture3b |
| 38 | +%run% Complex_Geometry geom_texture4a |
| 39 | +%run% Complex_Geometry geom_texture4b |
| 40 | +%run% Complex_Geometry sphere_radiate |
| 41 | +%run% Complex_Geometry sphere_helium_conserve_3meshes |
| 42 | +%run% Complex_Geometry cone_1mesh |
| 43 | +%run% Complex_Geometry t34_scaling |
| 44 | +%run% Controls activate_vents |
| 45 | +%run% Detectors beam_detector |
| 46 | +%run% Detectors objects_static |
| 47 | +%run% Detectors objects_dynamic |
| 48 | +%run% Fires couch |
| 49 | +%run% Flowfields helium_2d_isothermal |
| 50 | +%run% Flowfields symmetry_test |
| 51 | +%run% Flowfields symmetry_test_2 |
| 52 | +%run% Flowfields symmetry_test_mpi |
| 53 | +%run% Flowfields jet_fan |
| 54 | +%run% Flowfields velocity_bc_test |
| 55 | +%run% Heat_Transfer checkerboard |
| 56 | +%run% Heat_Transfer ht3d_demo |
| 57 | +%run% Heat_Transfer ht3d_ibeam |
| 58 | +%run% Heat_Transfer ht3d_network |
| 59 | +%run% HVAC HVAC_mass_conservation |
| 60 | +%run% HVAC HVAC_energy_pressure |
| 61 | +%run% HVAC leak_test_2 |
| 62 | +%run% Miscellaneous pyramid |
| 63 | +%run% Miscellaneous obst_multi |
| 64 | +%run% Miscellaneous obst_sphere |
| 65 | +%run% Miscellaneous obst_cylinder |
| 66 | +%run% Miscellaneous obst_cone |
| 67 | +%run% Miscellaneous obst_rotbox |
| 68 | +%run% NS_Analytical_Solution ns2d_64 |
| 69 | +%run% Pressure_Effects pressure_boundary |
| 70 | +%run% Pressure_Solver dancing_eddies_embed |
| 71 | +%run% Pressure_Solver dancing_eddies_tight |
| 72 | +%run% Scalar_Analytical_Solution move_slug |
| 73 | +%run% Scalar_Analytical_Solution move_slug_fl1 |
| 74 | +%run% Scalar_Analytical_Solution shunn3_256 |
| 75 | +%run% Scalar_Analytical_Solution soborot_charm_square_wave_64 |
| 76 | +%run% Sprinklers_and_Sprays cascade |
| 77 | +%run% Turbulence csmag_64 |
| 78 | +%run% Turbulence dsmag_64 |
| 79 | +%run% WUI Bova_1a |
| 80 | +%run% WUI Bova_1b |
| 81 | +%run% WUI Bova_4a |
| 82 | +%run% WUI level_set_fuel_model_1 |
| 83 | + |
| 84 | +goto eof |
| 85 | + |
| 86 | +:runit |
| 87 | + set prog=%1 |
| 88 | + set option=%2 |
| 89 | + set casedir=%3 |
| 90 | + set input=%4 |
| 91 | + |
| 92 | + cd %verdir%\%casedir% |
| 93 | + if %option% == fds timeout /t 2 /nobreak & start "%input%" cmd /c "%smvverdir%\scripts\background.bat %prog% %input%.fds" |
| 94 | + if %option% == smv %prog% -runscript %input% |
| 95 | + exit /b |
| 96 | + |
| 97 | +:eof |
0 commit comments