diff --git a/tests/small/CMakeLists.txt b/tests/small/CMakeLists.txt index 3267d54ef4..c166f6bd1e 100644 --- a/tests/small/CMakeLists.txt +++ b/tests/small/CMakeLists.txt @@ -5,36 +5,18 @@ ##*****************************************************************// # Heat Transfer Problems ############### -add_subdirectory(SteadyHeat1D) add_subdirectory(SteadyHeat2D) add_subdirectory(SteadyHeatConstrainedOpt2D) add_subdirectory(SteadyHeat3D) -IF (ALBANY_PAMGEN) -add_subdirectory(SteadyHeat3DTest) -ENDIF () -add_subdirectory(SteadyHeat1DEB) add_subdirectory(SteadyHeat2DEB) add_subdirectory(ContinuationHeat1D) -add_subdirectory(Heat1DPeriodic) -add_subdirectory(Heat2DTriangles) -add_subdirectory(Heat1DWithSource) -add_subdirectory(MPNIQuad2D) -add_subdirectory(TransientHeat1D) add_subdirectory(TransientHeat2D) -add_subdirectory(HeatEigenvalues) add_subdirectory(SideSetLaplacian) # Not 100% sure this requires STK, but I think so IF(ALBANY_SEACAS) - IF(ALBANY_PAMGEN) - add_subdirectory(Heat3DPamgen) - ENDIF() - add_subdirectory(Heat2DMMCylWithSource) add_subdirectory(HeatQuadTri) - add_subdirectory(TransientHeat2DTableSource) - add_subdirectory(Ioss2D) add_subdirectory(Ioss3D) add_subdirectory(IossRestart) - add_subdirectory(SteadyHeat2DInternalNeumann) add_subdirectory(SteadyHeat2DRobin) add_subdirectory(SteadyHeat2DSS) ENDIF(ALBANY_SEACAS) @@ -43,11 +25,8 @@ add_subdirectory(Utils) # DEMO PDES ############### IF(ALBANY_DEMO_PDES) - add_subdirectory(Helmholtz2D) - add_subdirectory(LinComprNS) add_subdirectory(AdvDiff) add_subdirectory(ReactDiffSystem) - add_subdirectory(ComprNS) add_subdirectory(ODE) add_subdirectory(ThermoElectrostatics2D) IF(ALBANY_STK_EXPR_EVAL) @@ -56,24 +35,15 @@ IF(ALBANY_DEMO_PDES) add_subdirectory(Thermal3D) add_subdirectory(Advection1D) ENDIF() - # add_subdirectory(TekoPrec) # These require exodus, Ioss, stk_io, to read meshes IF(ALBANY_SEACAS) - add_subdirectory(CahnHillElast2D) add_subdirectory(NSPoiseuille2D) - add_subdirectory(NSRayleighBernard2D) IF(NOT ALBANY_ENABLE_CUDA) # Currently takes too long to run on Ride add_subdirectory(NSVortexShedding2D) ENDIF() - add_subdirectory(PNP) ENDIF() - if (ALBANY_ASCR) - add_subdirectory(CoupledReactor) - add_subdirectory(NSReactor) - endif() - ENDIF(ALBANY_DEMO_PDES) # LandIce ################## diff --git a/tests/small/CahnHillElast2D/CMakeLists.txt b/tests/small/CahnHillElast2D/CMakeLists.txt deleted file mode 100644 index cb94c81428..0000000000 --- a/tests/small/CahnHillElast2D/CMakeLists.txt +++ /dev/null @@ -1,25 +0,0 @@ -if (ALBANY_PARALELL_EXODUS) - # Name the test with the directory name - get_filename_component(testNameRoot ${CMAKE_CURRENT_SOURCE_DIR} NAME) - - # Copy mesh file from source to binary dir - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/domain.exo - ${CMAKE_CURRENT_BINARY_DIR}/domain.exo COPYONLY) - - set (testName ${testNameRoot}) - if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - - add_test(${testName}_Tempus_Epetra ${Albany.exe} input.yaml) - set_tests_properties(${testName}_Tempus_Epetra PROPERTIES LABELS "Demo;Epetra;Forward") - endif() - - set (testName ${testNameRoot}_Tempus_Tpetra) - if (ALBANY_IFPACK2) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - add_test(${testName} ${Albany.exe} inputT.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "Demo;Tpetra;Forward") - endif() -endif(ALBANY_PARALELL_EXODUS) diff --git a/tests/small/CahnHillElast2D/doc/GaRuWe01.pdf b/tests/small/CahnHillElast2D/doc/GaRuWe01.pdf deleted file mode 100644 index de8b7062ad..0000000000 Binary files a/tests/small/CahnHillElast2D/doc/GaRuWe01.pdf and /dev/null differ diff --git a/tests/small/CahnHillElast2D/domain.exo b/tests/small/CahnHillElast2D/domain.exo deleted file mode 100644 index 3b831145f4..0000000000 Binary files a/tests/small/CahnHillElast2D/domain.exo and /dev/null differ diff --git a/tests/small/CahnHillElast2D/domain.jou b/tests/small/CahnHillElast2D/domain.jou deleted file mode 100644 index 3615e3196b..0000000000 --- a/tests/small/CahnHillElast2D/domain.jou +++ /dev/null @@ -1,16 +0,0 @@ -create curve spline location -0.5 -0.5 0 location 0.5 -0.5 0 -create curve spline location 0.5 -0.5 0 location 0.5 0.5 0 -create curve spline location 0.5 0.5 0 location -0.5 0.5 0 -create curve spline location -0.5 0.5 0 location -0.5 -0.5 0 -create surface curve 1 2 3 4 -curve 1 2 3 4 interval 100 -curve 1 2 3 4 scheme equal -#surface 1 scheme tridelaunay -surface 1 scheme map -mesh surface 1 -block 1 surface 1 -#block 1 element type TRI -block 1 element type QUAD4 -set large exodus file off -#export mesh "/Volumes/ascldap/Codes/working/square/domain.exo" overwrite -export mesh "/ascldap/users/gahanse/Codes/working/square/domain.exo" overwrite diff --git a/tests/small/CahnHillElast2D/input.yaml b/tests/small/CahnHillElast2D/input.yaml deleted file mode 100644 index 9a5a77f98a..0000000000 --- a/tests/small/CahnHillElast2D/input.yaml +++ /dev/null @@ -1,88 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: CahnHill 2D - Solution Method: Transient - Phalanx Graph Visualization Detail: 0 - Initial Condition: - Function: EBPerturb - block_1: [0.00000000000000000e+00, 0.00000000000000000e+00] - Perturb IC: [1.00000000000000005e-01, 0.00000000000000000e+00] - b: 2.00000000000000011e-01 - gamma: 1.00000000000000004e-04 - Lump Mass: true - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - Method: Ioss - Exodus Input File Name: domain.exo - Exodus Output File Name: domain_out.exo - Use Serial Mesh: true - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 1.00000000000000002e-02 - Final Time: 1.00000000000000005e-01 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-02 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Stratimikos: - Linear Solver Type: Belos - Preconditioner Type: Ifpack - Regression For Response 0: - Absolute Tolerance: 1.00000000000000005e-01 - Test Value: 0.00000000000000000e+00 - Relative Tolerance: 1.00000000000000005e-01 -... diff --git a/tests/small/CahnHillElast2D/inputT.yaml b/tests/small/CahnHillElast2D/inputT.yaml deleted file mode 100644 index 65b31bdce0..0000000000 --- a/tests/small/CahnHillElast2D/inputT.yaml +++ /dev/null @@ -1,119 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: CahnHill 2D - Solution Method: Transient - Phalanx Graph Visualization Detail: 0 - Initial Condition: - Function: EBPerturb - block_1: [0.00000000000000000e+00, 0.00000000000000000e+00] - Perturb IC: [1.00000000000000005e-01, 0.00000000000000000e+00] - b: 2.00000000000000011e-01 - gamma: 1.00000000000000004e-04 - Lump Mass: true - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - Method: Ioss - Exodus Input File Name: domain.exo - Exodus Output File Name: domain_out_tpetra_tempus.exo - Use Serial Mesh: true - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 1.00000000000000005e-01 - Final Time: 5.00000000000000000e-01 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Time Step Control Strategy: - Strategy Type: Basic VS - Reduction Factor: 5.00000000000000000e-01 - Amplification Factor: 1.75000000000000000e+00 - Minimum Value Monitoring Function: 4.00000000000000008e-02 - Maximum Value Monitoring Function: 5.00000000000000027e-02 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: false - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: NormF - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Stratimikos: - Linear Solver Type: Belos - Preconditioner Type: Ifpack2 - Preconditioner Types: - ML: - Base Method Defaults: SA - ML Settings: - 'aggregation: type': Uncoupled - 'coarse: max size': 20 - 'coarse: pre or post': post - 'coarse: sweeps': 1 - 'coarse: type': Amesos-KLU - prec type: MGV - 'smoother: type': Gauss-Seidel - 'smoother: damping factor': 6.60000000000000031e-01 - 'smoother: pre or post': both - 'smoother: sweeps': 1 - ML output: 1 - Regression For Response 0: - Absolute Tolerance: 1.00000000000000005e-01 - Test Value: 0.00000000000000000e+00 - Relative Tolerance: 1.00000000000000005e-01 -... diff --git a/tests/small/ComprNS/CMakeLists.txt b/tests/small/ComprNS/CMakeLists.txt deleted file mode 100644 index 01210f2b4f..0000000000 --- a/tests/small/ComprNS/CMakeLists.txt +++ /dev/null @@ -1,12 +0,0 @@ -if (ALBANY_EPETRA) - # Name the test with the directory name - get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR}_2DTaylorGreenVortex_SDBC NAME) - - # Create the test with this name and standard executable - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input2D_taylorGreenVortex.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input2D_taylorGreenVortex.yaml COPYONLY) - - add_test(${testName} ${Albany.exe} input2D_taylorGreenVortex.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "Demo;Epetra;Forward") -endif() - diff --git a/tests/small/ComprNS/input2D_taylorGreenVortex.yaml b/tests/small/ComprNS/input2D_taylorGreenVortex.yaml deleted file mode 100644 index 9bb1c14c31..0000000000 --- a/tests/small/ComprNS/input2D_taylorGreenVortex.yaml +++ /dev/null @@ -1,125 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 1 - Name: ComprNS 2D - Solution Method: Transient - Number of PDE Equations: 4 - Dirichlet BCs: - SDBC on NS NodeSet0 for DOF qFluct2: 0.00000000000000000e+00 - SDBC on NS NodeSet1 for DOF qFluct2: 0.00000000000000000e+00 - SDBC on NS NodeSet2 for DOF qFluct1: 0.00000000000000000e+00 - SDBC on NS NodeSet3 for DOF qFluct1: 0.00000000000000000e+00 - SDBC on NS NodeSet0 for DOF qFluct0: 1.00000000000000000e+00 - SDBC on NS NodeSet1 for DOF qFluct0: 1.00000000000000000e+00 - SDBC on NS NodeSet2 for DOF qFluct0: 1.00000000000000000e+00 - SDBC on NS NodeSet3 for DOF qFluct0: 1.00000000000000000e+00 - Body Force: - Type: Taylor-Green Vortex - Viscosity: - Type: Constant - Kappa_ref: 1.38890000000000002e+00 - Initial Condition: - Function: Taylor-Green Vortex - Parameters: - Number Of Parameters: 0 - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - Periodic_x BC: true - Periodic_y BC: true - 1D Elements: 20 - 2D Elements: 20 - 1D Scale: 1.00000000000000000e+00 - 2D Scale: 1.00000000000000000e+00 - Method: STK2D - Exodus Output File Name: comprns2D_taylorEul_out.exo - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 5.00000000000000010e-03 - Final Time: 1.00000000000000000e+00 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 9.99999999999999954e-07 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: NormF - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Stratimikos: - Linear Solver Type: AztecOO - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 1 - Max Iterations: 100 - Tolerance: 9.99999999999999954e-07 - Preconditioner Type: Ifpack - Regression For Response 0: - Test Value: -5.17882027672999980e-03 - Relative Tolerance: 1.00000000000000004e-04 -... diff --git a/tests/small/CoupledReactor/CMakeLists.txt b/tests/small/CoupledReactor/CMakeLists.txt deleted file mode 100644 index d469a77f7b..0000000000 --- a/tests/small/CoupledReactor/CMakeLists.txt +++ /dev/null @@ -1,12 +0,0 @@ -if (ALBANY_EPETRA) - # Name the test with the directory name - get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR} NAME) - - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_domain_coupled.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_domain_coupled.yaml COPYONLY) - - # Create the test - add_test(${testName}_Epetra ${Albany.exe} input_domain_coupled.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Demo;Epetra;Forward") -endif() - diff --git a/tests/small/CoupledReactor/input_domain_coupled.yaml b/tests/small/CoupledReactor/input_domain_coupled.yaml deleted file mode 100644 index 9473f0c146..0000000000 --- a/tests/small/CoupledReactor/input_domain_coupled.yaml +++ /dev/null @@ -1,149 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 0 - Name: NavierStokes 1D - Flow: - Variable Type: None - Heat: - Variable Type: DOF - Neutronics: - Variable Type: DOF - Neutron Diffusion Coefficient: - Type: Transport Mean Free Path - Absorption Cross Section: - Type: invSQRT Temperature Dependent - Reference Value: 1.55999999999999992e-02 - Reference Temperature: 3.00000000000000000e+02 - Fission Cross Section: - Type: invSQRT Temperature Dependent - Reference Value: 1.11000000000000004e-02 - Reference Temperature: 3.00000000000000000e+02 - Scattering Cross Section: - Type: Constant - Value: 7.63199999999999989e-01 - Neutrons per Fission: - Type: Constant - Value: 2.20000000000000017e+00 - Neutron Source: - Truncated KL Expansion: - Number of KL Terms: 2 - Mean: 1.00000000000000000e+01 - Standard Deviation: 1.00000000000000000e+00 - Domain Lower Bounds: '{0.0}' - Domain Upper Bounds: '{10.0}' - Correlation Lengths: '{4.0}' - Energy Released per Fission: - Type: Constant - Value: 3.20434999999999980e+00 - Source Functions: - Neutron Fission: {} - Thermal Conductivity: - Type: Truncated KL Expansion - Number of KL Terms: 2 - Mean: 1.00000000000000000e+01 - Standard Deviation: 1.00000000000000000e+00 - Domain Lower Bounds: '{0.0}' - Domain Upper Bounds: '{10.0}' - Correlation Lengths: '{6.0}' - Have Pressure Stabilization: false - Have SUPG Stabilization: false - Solution Method: Steady - Initial Condition: - Function: Constant - Function Data: [3.00000000000000000e+02, 2.00000000000000000e+02] - Dirichlet BCs: - DBC on NS NodeSet0 for DOF phi: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF phi: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF T: 3.00000000000000000e+02 - DBC on NS NodeSet1 for DOF T: 3.00000000000000000e+02 - Parameters: - Number Of Parameters: 0 - Response Functions: - Number Of Responses: 2 - Response 1: - Type: Scalar Response - Name: Field Integral - Field Name: Neutron Flux - Response 0: - Type: Scalar Response - Name: Field Integral - Field Name: Temperature - Discretization: - 1D Elements: 100 - 1D Scale: 1.00000000000000000e+01 - Method: STK1D - Piro: - Solver Type: NOX - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 9.99999999999999954e-07 - Relative Tolerance: 9.99999999999999954e-07 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Linear Solver: - Max Iterations: 1000 - Tolerance: 9.99999999999999979e-13 - Forcing Term Method: Constant - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: AztecOO - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 30 - Output Frequency: 20 - Max Iterations: 250 - Tolerance: 9.99999999999999979e-13 - Preconditioner Type: Ifpack - Preconditioner Types: - ML: - Base Method Defaults: none - ML Settings: - default values: SA - 'smoother: type': ML symmetric Gauss-Seidel - 'smoother: pre or post': both - 'coarse: type': Amesos-KLU - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Test Value: 3.08499999999999996e-01 - Relative Tolerance: 1.00000000000000002e-03 - Regression For Response 1: - Test Value: 2.44100000000000011e-01 - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/CoupledReactor/input_heat.yaml b/tests/small/CoupledReactor/input_heat.yaml deleted file mode 100644 index abcc23df22..0000000000 --- a/tests/small/CoupledReactor/input_heat.yaml +++ /dev/null @@ -1,117 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Problem: - Name: NavierStokes 1D - Flow: - Variable Type: None - Heat: - Variable Type: DOF - Neutronics: - Variable Type: Constant - Value: 3.65000000000000000e+02 - Fission Cross Section: - Type: Constant - Value: 1.11000000000000004e-02 - Energy Released per Fission: - Type: Constant - Value: 3.20434999999999980e+00 - Have Pressure Stabilization: false - Have SUPG Stabilization: false - Solution Method: Steady - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 3.00000000000000000e+02 - DBC on NS NodeSet1 for DOF T: 3.00000000000000000e+02 - Source Functions: - Neutron Fission: {} - Thermal Conductivity: - Type: Truncated KL Expansion - Number of KL Terms: 2 - Mean: 1.00000000000000000e+01 - Standard Deviation: 1.00000000000000000e+00 - Domain Lower Bounds: '{0.0}' - Domain Upper Bounds: '{10.0}' - Correlation Lengths: '{6.0}' - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Scalar - Name: Neutron Flux - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - 1D Elements: 100 - 1D Scale: 1.00000000000000000e+01 - Method: STK1D - Piro: - Solver Type: NOX - Print Convergence Stats: false - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 9.99999999999999954e-07 - Relative Tolerance: 9.99999999999999954e-07 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Linear Solver: - Max Iterations: 1000 - Tolerance: 9.99999999999999979e-13 - Forcing Term Method: Constant - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: AztecOO - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 30 - Output Frequency: 20 - Max Iterations: 250 - Tolerance: 9.99999999999999979e-13 - VerboseObject: - Verbosity Level: none - Preconditioner Type: ML - Preconditioner Types: - ML: - Base Method Defaults: none - ML Settings: - default values: SA - 'smoother: type': ML symmetric Gauss-Seidel - 'smoother: pre or post': both - 'coarse: type': Amesos-KLU - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 0 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/CoupledReactor/input_network_coupled.yaml b/tests/small/CoupledReactor/input_network_coupled.yaml deleted file mode 100644 index 04709c4049..0000000000 --- a/tests/small/CoupledReactor/input_network_coupled.yaml +++ /dev/null @@ -1,79 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Coupled System: - Model XML Files: [input_heat.yaml, input_neutronics.yaml] - Piro: - Network Coupling Parameter Indices: [0, 0] - Network Coupling Response Indices: [0, 0] - Solver Type: NOX - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 9.99999999999999954e-07 - Relative Tolerance: 9.99999999999999954e-07 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Linear Solver: - Max Iterations: 1000 - Tolerance: 9.99999999999999979e-13 - Forcing Term Method: Constant - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: AztecOO - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 30 - Output Frequency: 20 - Max Iterations: 250 - Tolerance: 9.99999999999999979e-13 - Preconditioner Type: Ifpack - Preconditioner Types: - ML: - Base Method Defaults: none - ML Settings: - default values: SA - 'smoother: type': ML symmetric Gauss-Seidel - 'smoother: pre or post': both - 'coarse: type': Amesos-KLU - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Test Value: 2.42131000000000000e+02 - Relative Tolerance: 1.00000000000000002e-03 - Regression For Response 1: - Test Value: 3.07105000000000018e+02 - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/CoupledReactor/input_neutronics.yaml b/tests/small/CoupledReactor/input_neutronics.yaml deleted file mode 100644 index f77bc531d6..0000000000 --- a/tests/small/CoupledReactor/input_neutronics.yaml +++ /dev/null @@ -1,125 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Problem: - Name: NavierStokes 1D - Flow: - Variable Type: None - Heat: - Variable Type: Constant - Value: 3.00000000000000000e+02 - Neutronics: - Variable Type: DOF - Neutron Diffusion Coefficient: - Type: Transport Mean Free Path - Absorption Cross Section: - Type: invSQRT Temperature Dependent - Reference Value: 1.55999999999999992e-02 - Reference Temperature: 3.00000000000000000e+02 - Fission Cross Section: - Type: invSQRT Temperature Dependent - Reference Value: 1.11000000000000004e-02 - Reference Temperature: 3.00000000000000000e+02 - Scattering Cross Section: - Type: Constant - Value: 7.63199999999999989e-01 - Neutrons per Fission: - Type: Constant - Value: 2.20000000000000017e+00 - Neutron Source: - Truncated KL Expansion: - Number of KL Terms: 2 - Mean: 1.00000000000000000e+01 - Standard Deviation: 1.00000000000000000e+00 - Domain Lower Bounds: '{0.0}' - Domain Upper Bounds: '{10.0}' - Correlation Lengths: '{4.0}' - Have Pressure Stabilization: false - Have SUPG Stabilization: false - Solution Method: Steady - Dirichlet BCs: - DBC on NS NodeSet0 for DOF phi: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF phi: 0.00000000000000000e+00 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Scalar - Name: Temperature - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - 1D Elements: 100 - 1D Scale: 1.00000000000000000e+01 - Method: STK1D - Piro: - Solver Type: NOX - Print Convergence Stats: false - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 9.99999999999999954e-07 - Relative Tolerance: 9.99999999999999954e-07 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Linear Solver: - Max Iterations: 1000 - Tolerance: 9.99999999999999979e-13 - Forcing Term Method: Constant - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: AztecOO - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 30 - Output Frequency: 20 - Max Iterations: 250 - Tolerance: 9.99999999999999979e-13 - VerboseObject: - Verbosity Level: none - Preconditioner Type: ML - Preconditioner Types: - ML: - Base Method Defaults: none - ML Settings: - default values: SA - 'smoother: type': ML symmetric Gauss-Seidel - 'smoother: pre or post': both - 'coarse: type': Amesos-KLU - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 0 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/Heat1DPeriodic/CMakeLists.txt b/tests/small/Heat1DPeriodic/CMakeLists.txt deleted file mode 100644 index 3cf50b722c..0000000000 --- a/tests/small/Heat1DPeriodic/CMakeLists.txt +++ /dev/null @@ -1,24 +0,0 @@ -# Name the test with the directory name -get_filename_component(testNameRoot ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -#################################### -### Main tests ### -#################################### - -set(testName ${testNameRoot}) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - - add_test(${testName}_Epetra ${Albany.exe} input.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Basic;Epetra;Forward") -endif() - -if (ALBANY_IFPACK2) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - - add_test(${testName}_Tpetra ${Albany.exe} inputT.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Basic;Tpetra;Forward") -endif () diff --git a/tests/small/Heat1DPeriodic/input.yaml b/tests/small/Heat1DPeriodic/input.yaml deleted file mode 100644 index f395136448..0000000000 --- a/tests/small/Heat1DPeriodic/input.yaml +++ /dev/null @@ -1,103 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 1D - Compute Sensitivities: true - Periodic BC: true - Solution Method: Transient - Dirichlet BCs: { } - Initial Condition: - Function: 1D Gauss-Cos - Function Data: [0.00000000000000000e+00] - Source Functions: - Quadratic: - Nonlinear Factor: 0.00000000000000000e+00 - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Average - Parameters: - Number Of Parameters: 1 - Parameter 0: - Name: Quadratic Nonlinear Factor - Discretization: - 1D Elements: 200 - Method: STK1D - Regression For Response 0: - Test Value: 1.00069000000000008e+00 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Value: 5.62650000000000025e-02 - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 1.00000000000000010e-04 - Final Time: 5.00000000000000028e-02 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-02 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: NormF - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Stratimikos: - Linear Solver Type: Belos - Preconditioner Type: Ifpack -... diff --git a/tests/small/Heat1DPeriodic/inputT.yaml b/tests/small/Heat1DPeriodic/inputT.yaml deleted file mode 100644 index 9a7aeb1b70..0000000000 --- a/tests/small/Heat1DPeriodic/inputT.yaml +++ /dev/null @@ -1,110 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: Heat 1D - Compute Sensitivities: true - Periodic BC: true - Solution Method: Transient - Dirichlet BCs: { } - Initial Condition: - Function: 1D Gauss-Cos - Function Data: [0.00000000000000000e+00] - Source Functions: - Quadratic: - Nonlinear Factor: 0.00000000000000000e+00 - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Average - Parameters: - Number Of Parameters: 1 - Parameter 0: - Name: Quadratic Nonlinear Factor - Discretization: - 1D Elements: 200 - Method: STK1D - Regression For Response 0: - Test Value: 1.00069000000000008e+00 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Value: 5.62650000000000025e-02 - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 1.00000000000000010e-04 - Final Time: 5.00000000000000028e-02 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-02 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: NormF - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Stratimikos: - Linear Solver Type: Belos - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 1 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 -... diff --git a/tests/small/Heat1DWithSource/CMakeLists.txt b/tests/small/Heat1DWithSource/CMakeLists.txt deleted file mode 100644 index 3cf50b722c..0000000000 --- a/tests/small/Heat1DWithSource/CMakeLists.txt +++ /dev/null @@ -1,24 +0,0 @@ -# Name the test with the directory name -get_filename_component(testNameRoot ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -#################################### -### Main tests ### -#################################### - -set(testName ${testNameRoot}) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - - add_test(${testName}_Epetra ${Albany.exe} input.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Basic;Epetra;Forward") -endif() - -if (ALBANY_IFPACK2) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - - add_test(${testName}_Tpetra ${Albany.exe} inputT.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Basic;Tpetra;Forward") -endif () diff --git a/tests/small/Heat1DWithSource/input.yaml b/tests/small/Heat1DWithSource/input.yaml deleted file mode 100644 index b5c8c2cfa1..0000000000 --- a/tests/small/Heat1DWithSource/input.yaml +++ /dev/null @@ -1,123 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 1D - Compute Sensitivities: true - Solution Method: Transient - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 0.00000000000000000e+00 - Initial Condition: - Function: 1D Gauss-Sin - Function Data: [7.50000000000000000e-01] - Source Functions: - Quadratic: - Nonlinear Factor: 7.50000000000000000e-01 - Constant: true - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Average - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 2 - Scalar 0: - Name: DBC on NS NodeSet0 for DOF T - Scalar 1: - Name: DBC on NS NodeSet1 for DOF T - Discretization: - 1D Elements: 1600 - Method: STK1D - Regression For Response 0: - Test Value: 1.17236000000000007e-01 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Values: [4.65129000000000015e-01, 4.65129000000000015e-01] - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 0.00125 - Final Time: 2.50000000000000000e-01 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-06 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: NormF - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000002e-06 - Output Frequency: 1 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 3 - Block Size: 1 - Num Blocks: 100 - Flexible Gmres: false - Preconditioner Type: Ifpack -... diff --git a/tests/small/Heat1DWithSource/inputT.yaml b/tests/small/Heat1DWithSource/inputT.yaml deleted file mode 100644 index 572bbc9ef8..0000000000 --- a/tests/small/Heat1DWithSource/inputT.yaml +++ /dev/null @@ -1,130 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: Heat 1D - Compute Sensitivities: true - Solution Method: Transient - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 0.00000000000000000e+00 - Initial Condition: - Function: 1D Gauss-Sin - Function Data: [7.50000000000000000e-01] - Source Functions: - Quadratic: - Nonlinear Factor: 7.50000000000000000e-01 - Constant: true - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Average - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 2 - Scalar 0: - Name: DBC on NS NodeSet0 for DOF T - Scalar 1: - Name: DBC on NS NodeSet1 for DOF T - Discretization: - 1D Elements: 1600 - Method: STK1D - Regression For Response 0: - Test Value: 1.17236000000000007e-01 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Values: [4.65129000000000015e-01, 4.65129000000000015e-01] - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 0.00125 - Final Time: 2.50000000000000000e-01 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-06 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: NormF - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000002e-06 - Output Frequency: 1 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 3 - Block Size: 1 - Num Blocks: 100 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 1 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 -... diff --git a/tests/small/Heat2DMMCylWithSource/CMakeLists.txt b/tests/small/Heat2DMMCylWithSource/CMakeLists.txt deleted file mode 100644 index d4c7ce0eed..0000000000 --- a/tests/small/Heat2DMMCylWithSource/CMakeLists.txt +++ /dev/null @@ -1,54 +0,0 @@ -# Name the test with the directory name -get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -# Copy materials file from source to binary dir -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/materials.yaml - ${CMAKE_CURRENT_BINARY_DIR}/materials.yaml COPYONLY) - -# Copy mesh files from source to binary dir -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/fuel_volume.exo - ${CMAKE_CURRENT_BINARY_DIR}/fuel_volume.exo COPYONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/fuel_volume.exo.4.0 - ${CMAKE_CURRENT_BINARY_DIR}/fuel_volume.exo.4.0 COPYONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/fuel_volume.exo.4.1 - ${CMAKE_CURRENT_BINARY_DIR}/fuel_volume.exo.4.1 COPYONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/fuel_volume.exo.4.2 - ${CMAKE_CURRENT_BINARY_DIR}/fuel_volume.exo.4.2 COPYONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/fuel_volume.exo.4.3 - ${CMAKE_CURRENT_BINARY_DIR}/fuel_volume.exo.4.3 COPYONLY) - -# Create the the data for the test -# CylHeatProfile executable needs the ncdump file for mesh coordinates -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/fuel_volume.ncdump - ${CMAKE_CURRENT_BINARY_DIR}/fuel_volume.ncdump COPYONLY) - -add_executable(CylHeatProfile CylHeatProfile.cpp) -target_link_libraries(CylHeatProfile ${Trilinos_EXTRA_LD_FLAGS}) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - - add_test(NAME ${testName}_Epetra - COMMAND ${CMAKE_COMMAND} "-DTEST_PROG=${Albany.exe}" - "-DTEST_ARGS=input.yaml" - "-DAUX_ENV=${ALBANY_PRETEST_EXEC}" - "-DAUX_PROG=${CMAKE_CURRENT_BINARY_DIR}/CylHeatProfile" -P - ${CMAKE_CURRENT_SOURCE_DIR}/runtest.cmake - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Basic;Epetra;Forward") -endif() - -if (ALBANY_IFPACK2) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - - add_test(NAME ${testName}_Tpetra - COMMAND ${CMAKE_COMMAND} "-DTEST_PROG=${Albany.exe}" - "-DTEST_ARGS=inputT.yaml" - "-DAUX_ENV=${ALBANY_PRETEST_EXEC}" - "-DAUX_PROG=${CMAKE_CURRENT_BINARY_DIR}/CylHeatProfile" -P - ${CMAKE_CURRENT_SOURCE_DIR}/runtest.cmake - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Basic;Tpetra;Forward") -endif () diff --git a/tests/small/Heat2DMMCylWithSource/CylHeatProfile.cpp b/tests/small/Heat2DMMCylWithSource/CylHeatProfile.cpp deleted file mode 100644 index 1fd53a613e..0000000000 --- a/tests/small/Heat2DMMCylWithSource/CylHeatProfile.cpp +++ /dev/null @@ -1,207 +0,0 @@ -#include -#include -#include -#include - -/* - * This code calculates a solution of the heat equation as described in MMHeatExample.tex - * - */ - -double sqr(double x){ return x * x;} - -using namespace std; - -int main(){ - - double max = -1000; - double value; - double q = 20095; // W / m^3 - - // problem constants - - double r1 = 0.0046482; - double r2 = 0.0051562; - double r3 = 0.01; - - double k1 = 4.9844; - double k2 = 17.033; - double k3 = 0.0004; - - double T3 = 313.15; - - double T1 = (q * sqr(r1) / 2.0) * (log(r2/r1) / k2 + - log(r3/r2) / k3) + T3; - - double T2 = (q * sqr(r1) / 2.0) * (log(r3/r2) / k3) + T3; - - // Read the ncdump file to get the x locations of the nodes in the mesh. - - FILE *ifp = fopen("fuel_volume.ncdump", "r"); - char word[BUFSIZ]; - int num_nodes; - - if(ifp == NULL) perror("Cannot open ncdump input file"); - - // Gobble the file, one word at a time - - while( fscanf(ifp, "%s", word) == 1){ - - // Look for the word num_nodes - - if(strcmp(word, "num_nodes") == 0){ - - if(fscanf(ifp, "%*s%d", &num_nodes) != 1){ - cout << "Error" << endl; - return -1; - } - - break; - - } - } - - double *x = new double[num_nodes]; - double *y = new double[num_nodes]; - - while( fscanf(ifp, "%s", word) == 1){ - - // Look for the word coord - - if(strcmp(word, "coord") == 0){ - - if(fscanf(ifp, "%*s") != 0) { // gobble the equal sign - cout << "Error" << endl; - return -1; - } - - for(int i = 0; i < num_nodes; i++) // grab the x coordinate values - - if(fscanf(ifp, "%lf,", &x[i]) != 1){ - cout << "Error" << endl; - return -1; - } - - for(int i = 0; i < num_nodes - 1; i++) // grab the y coordinate values (all but the last one) - - if(fscanf(ifp, "%lf,", &y[i]) != 1){ // comma follows - cout << "Error" << endl; - return -1; - } - - if(fscanf(ifp, "%lf", &y[num_nodes - 1]) != 1){ // Get the last one - cout << "Error" << endl; - return -1; - } - - break; - - } - } - - fclose(ifp); - - ofstream out; - - out.open("reference_solution.dat", ios::out); - out.precision(10); - - out << "%%MatrixMarket matrix array real general" << endl; - - out << "% Steady 2D Heat Equation, multimaterial, cylindrical geometry" << endl; - - out << num_nodes << " 1" << endl; // Write M and N values - - double rad; - - for(int i = 0; i < num_nodes; i++){ - - rad = sqrt(sqr(x[i]) + sqr(y[i])); - - // Three regions, fuel, clad, and cask - - if(rad <= r1){ - - value = (q / (4.0 * k1))*(sqr(r1) - sqr(rad)) + (q * sqr(r1) / 2.0) * (log(r2/r1) / k2 + - log(r3/r2) / k3) + T3; - - } - else if(rad <= r2){ - - value = (T1 -T2) / log(r1/r2) * log(rad / r2) + T2; - - } - else { - - value = (T2 -T3) / log(r2/r3) * log(rad / r3) + T3; - - } - - out << value << endl; - - if(value > max) max = value; - - - } - - out.close(); - - cout << "Solution Max Value = " << max << endl; - -// Write out a gnuplot file to look at the temperature profile in 1D - - int num_gplot_nodes = 100; - ofstream output; - - // Write the Gnuplot driver file - - output.open("HeatProfile.plt", std::ios::out); - output.precision(10); - - output << - - "set ylabel \"Temperature (K)\" " << endl << - "set ytics nomirror " << endl << - " " << endl << - "set xtics nomirror " << endl << - "set xlabel \"Radius (m)\" " << endl << - " " << endl << - "plot 'HeatProfile.dat' with lines title \"Temp Profile\" " << endl; - - output.close(); - output.open("HeatProfile.dat", std::ios::out); - - for(int i = 0; i <= num_gplot_nodes; i++){ - - rad = i * r3 / (double)num_gplot_nodes; - - // Three regions, fuel, clad, and cask - - if(rad <= r1){ - - value = (q / (4.0 * k1))*(sqr(r1) - sqr(rad)) + (q * sqr(r1) / 2.0) * (log(r2/r1) / k2 + - log(r3/r2) / k3) + T3; - - } - else if(rad <= r2){ - - value = (T1 -T2) / log(r1/r2) * log(rad / r2) + T2; - - } - else { - - value = (T2 -T3) / log(r2/r3) * log(rad / r3) + T3; - - } - - output << rad << " " << value << endl; - - } - - output.close(); - - return 0; - -} - - diff --git a/tests/small/Heat2DMMCylWithSource/doc/MMHeatExample.tex b/tests/small/Heat2DMMCylWithSource/doc/MMHeatExample.tex deleted file mode 100644 index 271b8a1131..0000000000 --- a/tests/small/Heat2DMMCylWithSource/doc/MMHeatExample.tex +++ /dev/null @@ -1,275 +0,0 @@ -\documentclass[12pt]{article} -\usepackage{fullpage} -\usepackage{graphicx} -\usepackage{color} -\usepackage{amsmath} -\usepackage{amsfonts} -\usepackage{listings} -\usepackage{framed} -\usepackage[pdftex,pdfborder={0 0 0}]{hyperref} - -\newcommand{\uo}{\mathrm{UO}_2} -\newcommand{\K}{\ensuremath{\mbox{K}}} -\newcommand{\W}{\ensuremath{\mbox{W}}} -\newcommand{\M}{\ensuremath{\mbox{M}}} -\newcommand{\C}{\ensuremath{\mbox{C}}} -\newcommand{\kg}{\ensuremath{\mbox{kg}}} -\newcommand{\m}{\ensuremath{\mbox{m}}} -\newcommand{\inch}{\ensuremath{\mbox{in}}} -\newcommand{\clad}{\ensuremath{\mbox{clad}}} - - -%opening -\title{2D Multimaterial Heat Conduction in Cylindrical Geometry With Source} -\author{Glen Hansen} - -\begin{document} -\maketitle - -\begin{figure}[!htbp] -\includegraphics[width=6.5in,trim=100 200 200 100,clip]{cyl} -\caption{Concentric cylindrical model with multiple regions of different thermal conductivity. Region 1 has -conductivity $k_1$, radius $r_1$, internal heat generation term $\dot{q}$, and is made of $\uo$.} -\label{fig:domain} -\end{figure} - - -This document describes the Albany Heat2DMMCylWithSource test problem. It is a -simple heat conduction problem, with a constant volumetric source in Region~1 -(shown in Fig.~\ref{fig:domain}), that is surrounded by two different materials -to form concentric cylinders. Region~1 is meant to be a reactor fuel that -generates heat by radioactive decay at a constant rate $\dot{q}$. A ceramic -material of moderate thermal conductivity $k_1$ and made of $\uo$ fills the -region. The radius is $r_1$, and the outside temperature of this area is $T_1$. - -Zircalloy metal, the fuel cladding, surrounds this fuel. The cladding has an outside radius -$r_2$, a conductivity $k_2$, and an outside temperature $T_2$. Lastly, air (or vacuum) surrounds the -cladding. The air region has a thermal conductivity $k_3$, radius $r_3$, and outside temperature $T_3$. -The idea behind this test is to calculate the effective thermal conductivity $k_3$ of the air/vacuum environment -that surrounds the fuel/cladding while it is ``dryed.'' Given a decay heat $\dot{q}$, what is the thermal -conductivity of this material needed such that the peak internal temperature of the fuel (Region~1) does not -exceed $400 C$ given a surrounding environment temperature $T_3$ of $40 C$. - -This test is meant to provide a simple steady-state validation of initial capabilities needed to calculate -such things. Here, we model the concentric cylinders in two stages. The first stage uses a simplified form -of (3.28) in -\cite{incropera81}: -% -\begin{equation} -q_r = \frac{T_{\infty,1} - T_{\infty, 4}}{\frac{1}{2\pi r_1 L h_1} + \frac{\ln (r_2 / r_1)}{2\pi k_A L} + -\frac{\ln (r_3 / r_2)}{2 \pi k_B L} + \frac{\ln(r_4/r_3)}{2\pi k_C L} + \frac{1}{2\pi r_4 L h_4}} -\end{equation} - -For the problem described in Fig.~\ref{fig:domain}, and assuming that the length of the problem $L$ is -unity, this becomes -% -\begin{equation} -q_r = \frac{T_{1} - T_{3}}{\frac{\ln (r_2 / r_1)}{2\pi k_2} + -\frac{\ln (r_3 / r_2)}{2 \pi k_3} } -\label{eq:resist} -\end{equation} - -Now, note that an overall energy balance at a radius of $r_1$ will give -% -\begin{equation} -q_r(r=r_1, \mathrm{inside}) = -q_r(r=r_1, \mathrm{outside}) -\label{eq:e_balance} -\end{equation} -or -\begin{equation} -\dot{q} (\pi r_1^2) = -\frac{T_{1} - T_{3}}{\frac{\ln (r_2 / r_1)}{2\pi k_2} + -\frac{\ln (r_3 / r_2)}{2 \pi k_3} } -\label{eq:energy_balance} -\end{equation} -or -\begin{equation} -\frac{\dot{q} r_1^2}{2} \left[ -\frac{\ln (r_2 / r_1)}{k_2} + -\frac{\ln (r_3 / r_2)}{k_3} \right] = -T_{1} - T_{3} -\end{equation} -or simply -\begin{equation} -\frac{\dot{q} r_1^2}{2} \left[ \quad \cdot \quad \right] = -T_{1} - T_{3} -\label{eq:bal} -\end{equation} - -Lastly, note that (3.52) in \cite{incropera81} -% -\begin{equation} -T(r) = \frac{\dot{q} r_o^2}{4 k} \left( 1 - \frac{r^2}{r_o^2}\right) + T_s -\end{equation} -% -may be rewritten for our case of the center cylinder $r_1$ as -% -\begin{equation} -T(r) = \frac{\dot{q}}{4 k_1} \left( r_1^2 - r^2\right) + T_1 -\label{eq:fuel_t_1} -\end{equation} - -As one is typically most interested in the temperature profile inside the fuel region~1, we can rewrite -\eqref{eq:bal} in terms of $T_1$ -% -\begin{equation} -T_{1} = -\frac{\dot{q} r_1^2}{2} \left[ \quad \cdot \quad \right] -+ T_{3} -\end{equation} -% -and substitute this into \eqref{eq:fuel_t_1} to get -% -\begin{equation} -T(r) = \frac{\dot{q}}{4 k_1} \left( r_1^2 - r^2\right) + -\frac{\dot{q} r_1^2}{2} \left[ -\frac{\ln (r_2 / r_1)}{k_2} + -\frac{\ln (r_3 / r_2)}{k_3} \right] + T_3 -\label{eq:fuel_t_2} -\end{equation} - -To get $T_1$, we evaluate \eqref{eq:fuel_t_2} at $r = r_1$, -% -\begin{equation} -T_1 = \frac{\dot{q} r_1^2}{2} \left[ -\frac{\ln (r_2 / r_1)}{k_2} + -\frac{\ln (r_3 / r_2)}{k_3} \right] + T_3. -\label{eq:fuel_t_1a} -\end{equation} - -To get $T_2$, we note that $q_r$ in \eqref{eq:e_balance} is constant outside of the fuel $r \leq r_1$, so -\eqref{eq:energy_balance} can be written as: -% -\begin{equation} -\dot{q} (\pi r_1^2) = -\frac{T_{1} - T_{3}}{\frac{\ln (r_2 / r_1)}{2\pi k_2} + -\frac{\ln (r_3 / r_2)}{2 \pi k_3} } = -\frac{T_{2} - T_{3}}{\frac{\ln (r_3 / r_2)}{2 \pi k_3} }, -\end{equation} -% -or -% -\begin{equation} -T_2 = \frac{\dot{q} r_1^2}{2} \left[ -\frac{\ln (r_3 / r_2)}{k_3} \right] + T_3. -\label{eq:fuel_t_2_a} -\end{equation} - -Now, we use (3.25) in \cite{incropera81}, written appropriately, to calculate the -temperature profile in the cladding $r_1 \leq r \leq r_2$, -% -\begin{equation} -T(r) = \frac{T_1 - T_2}{\ln(r_1/r_2)} \ln(\frac{r}{r_2}) + T_2, -\label{eq:T_outer_a} -\end{equation} -% -and again for the cask environment $r_2 \leq r \leq r_3$, -% -\begin{equation} -T(r) = \frac{T_2 - T_3}{\ln(r_2/r_3)} \ln(\frac{r}{r_3}) + T_3. -\label{eq:T_outer_b} -\end{equation} - -\section{Use Case} - -Here, we will vary $r$ in \eqref{eq:fuel_t_2} to see the temperature variation in region 1, the $\uo$ fuel area. -The test case for this code is to compare long-time transient results in this region to this steady derivation. - -\section{Test Problem} - -The test problem in this directory is a single nuclear fuel rod in a storage (drying) cask. First, it is necessary -to determine the thermal conductivity of the ``inert-ed'' environment between the fuel rod and the cask, under -the conditions of the drying process. Known are the thermal conductivities of $\uo$ and the cladding, and -the decay heat in the fuel. Further, the ambient temperature on the outside of the cask is assumed, and the peak -temperature in the fuel cannot exceed 400 C. This calculation will form our test case. - -\begin{figure}[!htbp] -\includegraphics[width=5.5in]{fig_5_1.pdf} -\caption{Decay heat from fission products under storage conditions, from \cite{EPRI1003135}.} -\label{fig:fig_5_1_epri} -\end{figure} - - -\begin{table*}[!htbp]\centering -\caption{\label{tab1}Simulation properties and constants used.} -\footnotesize -\begin{tabular*}{0.9\textwidth}{@{\extracolsep{\fill}}|c|c|c|c|}\hline -Property&Value&Units&Source\\ -\hline -$k(\uo)$&$k(T, x)=\lambda_0(T)\frac{\mbox{arctan}\left(\theta(T, x)\right)}{\theta(T, x)}+5.95\times 10^{-11} T^3$ &$\W\,\m^{-1}\,\K^{-1}$& \cite{ramirez.ea06}\\ -&$\begin{array}{r@{\:=\:}l} -\lambda_0(T)&\left(3.24\times 10^{-2}+2.51\times 10^{-4} T \right)^{-1}\\ -\theta(T, x) & 3.67 \,\mbox{exp}\left(-4.73\times 10^{-4} T\right)\sqrt{2 x \lambda_0(T)} -\end{array}$& & \\ -\hline -$k(\clad)$&$k(T)=10.98+1.4\times 10^{-2} T-7.44\times 10^{-6} T^2$ &$\W\,\m^{-1}\,\K^{-1}$& \cite{ramirez.ea06}\\ -\hline -$r(\uo)$&$r = 0.183$&$\inch$&\cite{roberts75}\\ -$r(\clad)$&$r = 0.211$&$\inch$&\cite{roberts75}\\ -$l(\uo)$&$l = 0.6$&$\inch$&\cite{roberts75}\\ -$T(\mathrm{max})$&$T = 400$&$\C$&\cite{EPRI1015048}\\ -\hline -$r(\uo)$&$r_1 = 0.0046482$&$\m$&\cite{roberts75}$^1$\\ -$r(\clad)$&$r_2 = 0.0051562$&$\m$&\cite{roberts75}$^1$\\ -$r(\mathrm{cask})$&$r_3 = 0.01$&$\m$&\mbox{}$^2$\\ -$l(\uo)$&$l = 0.01524$&$\m$&\cite{roberts75}\\ -$T(\mathrm{max})$&$T = 673.15$&$\K$&\cite{EPRI1015048}\\ -$T_o(\mathrm{ambient})$&$T_o = 313.15$&$\K$&\\ -$H_D(t \mathrm{(yr)})$&$H_D = 273.986 + \frac{3113.11}{t^{0.6452}} + 9632.68 \exp(-t)$&$\W / \mathrm{Assy}$&\mbox{}$^3$\\ -$k(\uo)$&$k_1= 4.9844$&$\W\,\m^{-1}\,\K^{-1}$&\mbox{}$^4$\\ -$k(\clad)$&$k_2= 17.033$&$\W\,\m^{-1}\,\K^{-1}$&\mbox{}$^4$\\ -\hline -\end{tabular*} -\begin{minipage}{5.5in} -\hspace{-5pt}\mbox{}$^1$We assumed that both the cladding ID and OD was smaller by the magnitude of -the gap ($0.008\inch$ \cite{roberts75}) or $r_1 = 0.183\inch$ and $r_2 = 0.211 - 0.008 = 0.0203\inch$. -\end{minipage} -\begin{minipage}{5.5in} -\hspace{-5pt}\mbox{}$^2$This is not an important dimension for this calculation, thus an effective radius -of $0.01\m$ is used arbitrarily here. -\end{minipage} -\begin{minipage}{5.5in} -\hspace{-5pt}\mbox{}$^3$Curve fit to data given in Fig.~5--1 in \cite{EPRI1003135}. -\end{minipage} -\begin{minipage}{5.5in} -\hspace{-5pt}\mbox{}$^4$Computed from formula in \cite{ramirez.ea06}, assuming stoichiometric conditions $x = 0$ and -maximum fuel temperature $673.15\K$. -\end{minipage} - -\end{table*} - -Figure~\ref{fig:fig_5_1_epri} is a recreation of Fig.~5--1 in \cite{EPRI1003135}, that shows fuel decay heat history -vs.\ time in years. This figure is used to create the heat source term in the test problem. Here, we assume there are -$204$ fuel rods per assembly and each rod is $149.7\inch$ in length \cite{roberts75}. We convert the units -to $\W$ per unit length for the 2D test calculation as follows: -% -\begin{equation} -x \frac{\W}{\mathrm{Assy}} \times \frac{\mathrm{Assy}}{204 \, \mathrm{rods}} \times \frac{\mathrm{rod}}{149.7\inch} \times \frac{39.37\inch}{\m} -\label{eq:conversion} -\end{equation} - -The properties at the top of Table~\ref{tab1} are from \cite{thermooxy08}. To calculate the energy generation -term, we use the curve fit to Fig.~\ref{fig:fig_5_1_epri}, shown as $H_D$ in -Table~\ref{tab1} to calculate the decay energy generation rate after 8.5 years of -decay \cite{EPRI1003135}, in $\W / \m$. We use \eqref{eq:conversion} for units conversion. This -results in a source term of $1.364\W / \m$ at 8.5 years. Note that this is the -heat generation in the fuel per meter of rod length. Multiplying by one meter (unit length) this gives the left hand -side of \eqref{eq:energy_balance}, or -% -\begin{equation} -\dot{q}(\pi r^2_1) = 1.364 \W. -\end{equation} -% -This approach assumes no temperature variation vertically in the rod (not a good assumption). Given the radius -of the $\uo$ in the fuel, one may calculate the heat source term at 8.5 years to be -% -\begin{equation} -\dot{q} = 20095 \W / \m^3. -\end{equation} - - -\bibliographystyle{plain} -\bibliography{MMbiblio} - -\end{document} diff --git a/tests/small/Heat2DMMCylWithSource/doc/MMbiblio.bib b/tests/small/Heat2DMMCylWithSource/doc/MMbiblio.bib deleted file mode 100644 index e520b20d57..0000000000 --- a/tests/small/Heat2DMMCylWithSource/doc/MMbiblio.bib +++ /dev/null @@ -1,80 +0,0 @@ -@Article{ thermooxy08, - author = {C. Newman and G. Hansen and D. Gaston}, - date-modified = {2010-02-18 23:17:52 -0700}, - journal = "J. Nucl. Mat.", - pages = {6--15}, - title = {Three Dimensional Coupled Simulation of Thermomechanics, - Heat, and Oxygen Diffusion in $\mathrm{UO}_2$ Nuclear Fuel - Rods}, - volume = 392, - year = 2009, - bdsk-url-1 = {http://dx.doi.org/10.1016/j.jnucmat.2009.03.035} -} - -@Book{incropera81, - author = "Frank P. Incropera and David P. DeWitt", - publisher = "John Wiley \& Sons", - title = "Fundamentals of Heat Transfer", - address = "New York, NY", - year = "1981", - ISBN = " 0-471-42711-X" -} - -@Article{ramirez.ea06, - author = "J. C. Ramirez and M. Stan and P. Cristea", - journal = "J. Nucl. Mat.", - number = "3", - pages = "174--184", - title = "Simulations of heat and oxygen diffusion in - $\mathrm{UO}_2$ nuclear fuel rods", - volume = "359", - year = "2006", -} - -@Article{roberts75, - author = "J. T. A. Roberts", - journal = "IEEE Transactions on Nuclear Science", - number = "6", - pages = "2219--2226", - title = "Radiation Effects Problems in Nuclear Fuel Rods", - volume = "NS--22", - month = dec, - year = "1975", -} - -@TechReport{EPRI1015048, - - author="J.\ Rashid", - institution = "Electric Power Research Institute (EPRI)", - month = dec, - number = "1015048", - title = "Spent Fuel Transportation Applications--Assessment of Cladding Performance: - A Synthesis Report", - year = "2007" -} - -@TechReport{EPRI1003135, - - author="J.\ Rashid and R.\ Dunham", - institution = "Electric Power Research Institute (EPRI)", - month = nov, - number = "1003135", - title = "Creep Modeling and Analysis Methodology for Spent Fuel in Dry Storage", - year = "2001" -} - -@TechReport{matpro, - author = "C. M. Allison and G. A. Berna and R. Chambers and E. - W. Coryell and K. L. Davis and D. L. Hagrman and D. T. - Hagrman and N. L. Hampton and J. K. Hohorst and R. E. - Mason and M. L. McComas and K. A. McNeil and R. L. - Miller and C. S. Olsen and G. A. Reymann and L. J. - Siefken", - editor = "D. T. Hagrman", - institution = "NUREG/CR-6150, EGG-2720", - title = "{SCDAP/RELAP5/MOD3.1} Code Manual, Volume {IV}: - {MATPRO}--{A} Library of Materials Properties for - Light-Water-Reactor Accident Analysis", - year = "1993", -} - diff --git a/tests/small/Heat2DMMCylWithSource/doc/cyl.pdf b/tests/small/Heat2DMMCylWithSource/doc/cyl.pdf deleted file mode 100644 index 815098c3fa..0000000000 Binary files a/tests/small/Heat2DMMCylWithSource/doc/cyl.pdf and /dev/null differ diff --git a/tests/small/Heat2DMMCylWithSource/doc/cyl.pptx b/tests/small/Heat2DMMCylWithSource/doc/cyl.pptx deleted file mode 100644 index d392bc3e2b..0000000000 Binary files a/tests/small/Heat2DMMCylWithSource/doc/cyl.pptx and /dev/null differ diff --git a/tests/small/Heat2DMMCylWithSource/doc/fig_5_1.data b/tests/small/Heat2DMMCylWithSource/doc/fig_5_1.data deleted file mode 100644 index 72cb4a42d9..0000000000 --- a/tests/small/Heat2DMMCylWithSource/doc/fig_5_1.data +++ /dev/null @@ -1,12 +0,0 @@ -# DOE/OCRWM data from Fig. 5-1 in EPRI1003135 -3 2280 -4 1740 -5 1440 -6 1280 -7 1160 -8 1080 -10 960 -12 910 -15 830 -20 750 -30 600 diff --git a/tests/small/Heat2DMMCylWithSource/doc/fig_5_1.pdf b/tests/small/Heat2DMMCylWithSource/doc/fig_5_1.pdf deleted file mode 100644 index 47bc46ea70..0000000000 Binary files a/tests/small/Heat2DMMCylWithSource/doc/fig_5_1.pdf and /dev/null differ diff --git a/tests/small/Heat2DMMCylWithSource/doc/fig_5_1.plt b/tests/small/Heat2DMMCylWithSource/doc/fig_5_1.plt deleted file mode 100644 index 43ab7fb7ff..0000000000 --- a/tests/small/Heat2DMMCylWithSource/doc/fig_5_1.plt +++ /dev/null @@ -1,49 +0,0 @@ -set terminal postscript color enhanced -set output "fig_5_1.eps" -#set size 0.5,0.5 -#set bmargin 0 -set yrange [400:2400] -set ytic 400, 200, 2400 -set ylabel "Decay Heat (Watt/Assembly)" -#set format y "10^{%L}" -#set log y -set ytics nomirror -set mytics 5 - -# set lines up -set style line 1 lt 2 lw 1 pt 4 lc rgb "sea-green" -set style line 2 lt 1 lw 1 lc rgb "red" -set style line 3 lt 1 lw 3 lc rgb "blue" - -#set style line 1 lt 1 lw 2 lc rgb "red" -#set style line 2 lt 1 lw 2 lc rgb "green" -#set style line 3 lt 1 lw 2 lc rgb "blue" -set style line 4 lt 1 lw 3 lc rgb "brown" -set style line 5 lt 1 lw 3 lc rgb "red" -set style line 6 lt 1 lw 3 lc rgb "purple" -set style line 7 lt 1 lw 3 lc rgb "black" -set style increment user -#set multiplot - -#set origin 0,0.3 -#set xtics nomirror (2, 4, 8, 16, 32) -#set xtics nomirror (16875, 38400, 86400, 118800, 307200) -set xrange [0:35] -set xlabel "Decay Time (Years) -set mxtics 5 -set xtics nomirror -#turn off the second axes -# move legend -#set key upper right Right - -theta(t) = a + b * t**c + d * exp(-t) -fit theta(x) 'fig_5_1.data' using 1:2 via a, b, c, d -#theta(t) = c + a * exp(-b * t) + d * exp(-e * t) -#fit theta(x) 'fig_5_1.data' using 1:2 via a, b, c, d, e - -plot 'fig_5_1.data' with points ls 1 title "DOE - Decay Heat History", \ - theta(x) ls 2 title "Best Fit Curve" - -set term pop -replot -reset diff --git a/tests/small/Heat2DMMCylWithSource/fuel_volume.exo b/tests/small/Heat2DMMCylWithSource/fuel_volume.exo deleted file mode 100644 index c6ef9ef3b2..0000000000 Binary files a/tests/small/Heat2DMMCylWithSource/fuel_volume.exo and /dev/null differ diff --git a/tests/small/Heat2DMMCylWithSource/fuel_volume.exo.4.0 b/tests/small/Heat2DMMCylWithSource/fuel_volume.exo.4.0 deleted file mode 100644 index 8349e4c1d3..0000000000 Binary files a/tests/small/Heat2DMMCylWithSource/fuel_volume.exo.4.0 and /dev/null differ diff --git a/tests/small/Heat2DMMCylWithSource/fuel_volume.exo.4.1 b/tests/small/Heat2DMMCylWithSource/fuel_volume.exo.4.1 deleted file mode 100644 index b3cdcdbd8b..0000000000 Binary files a/tests/small/Heat2DMMCylWithSource/fuel_volume.exo.4.1 and /dev/null differ diff --git a/tests/small/Heat2DMMCylWithSource/fuel_volume.exo.4.2 b/tests/small/Heat2DMMCylWithSource/fuel_volume.exo.4.2 deleted file mode 100644 index 02a1f567df..0000000000 Binary files a/tests/small/Heat2DMMCylWithSource/fuel_volume.exo.4.2 and /dev/null differ diff --git a/tests/small/Heat2DMMCylWithSource/fuel_volume.exo.4.3 b/tests/small/Heat2DMMCylWithSource/fuel_volume.exo.4.3 deleted file mode 100644 index 614ff4267e..0000000000 Binary files a/tests/small/Heat2DMMCylWithSource/fuel_volume.exo.4.3 and /dev/null differ diff --git a/tests/small/Heat2DMMCylWithSource/fuel_volume.jou b/tests/small/Heat2DMMCylWithSource/fuel_volume.jou deleted file mode 100644 index 66283ba327..0000000000 --- a/tests/small/Heat2DMMCylWithSource/fuel_volume.jou +++ /dev/null @@ -1,60 +0,0 @@ -## /Applications/Cubit-13.0/Cubit.app/Contents/MacOS/Cubitx -## Cubit Version 13.0 -## Cubit Build 46708 -## Revised 2011-08-17 15:39:00 -0600 (Wed, 17 Aug 2011) -## Running 09/13/2011 09:15:23 AM -## Command Options: -## -warning = On -## -information = On -# -cd '/Volumes/ascldap/Codes/Albany/examples/Heat2DMMCylWithSource' -# Build the cylinder that represents the cask and inert gas, one pellet high (inch dimensions) -# volume 1 -#create cylinder height 0.6 (inches) -#create cylinder height 0.01524 (meters) radius 0.01 -# meter dimensions -create cylinder height 0.01524 radius 0.01 -# -# Build cladding OR -# volume 2 -create cylinder height 0.01524 radius 0.0051562 -# -# cladding is 0.0243" thick, gives IR of 0.1867 -# but pellet swells. Assume pellet OR is 0.1867. New pellet OR is 0.183, gap is 0.008 -# volume 3 -create cylinder height 0.01524 radius 0.0046482 -# -subtract volume 2 from volume 1 keep -delete volume 1 -subtract volume 3 from volume 2 keep -delete volume 2 -# imprint and merge -imprint volume all -merge volume all -# mesh it -surface 9 13 17 sizing function none -#surface 9 13 17 size auto factor 1 -# Fine -#surface 9 13 17 size 0.00025 -# Coarse -#surface 9 13 17 size 0.05 -surface 9 13 17 size 0.0005 -mesh surface 9 13 17 -# block it -block 1 surface 9 -block 1 element type QUAD4 -block 1 name "Fuel" -block 2 surface 17 -block 2 element type QUAD4 -block 2 name "Clad" -block 3 surface 13 -block 3 element type QUAD4 -block 3 name "Environ" -# Outside of cask -nodeset 1 curve 10 -nodeset 1 name "Ambient" -# Output -save as "fuel_volume.cub" overwrite -set large exodus file off -export mesh "fuel_volume.exo" overwrite - diff --git a/tests/small/Heat2DMMCylWithSource/fuel_volume.ncdump b/tests/small/Heat2DMMCylWithSource/fuel_volume.ncdump deleted file mode 100644 index 483824f7fc..0000000000 --- a/tests/small/Heat2DMMCylWithSource/fuel_volume.ncdump +++ /dev/null @@ -1,2452 +0,0 @@ -netcdf fuel_volume { -dimensions: - len_string = 33 ; - len_line = 81 ; - four = 4 ; - time_step = UNLIMITED ; // (0 currently) - num_dim = 2 ; - num_nodes = 1392 ; - num_elem = 1328 ; - num_el_blk = 3 ; - num_qa_rec = 1 ; - num_node_sets = 1 ; - num_nod_ns1 = 126 ; - num_el_in_blk1 = 298 ; - num_nod_per_el1 = 4 ; - num_el_in_blk2 = 98 ; - num_nod_per_el2 = 4 ; - num_el_in_blk3 = 932 ; - num_nod_per_el3 = 4 ; -variables: - double time_whole(time_step) ; - char qa_records(num_qa_rec, four, len_string) ; - char coor_names(num_dim, len_string) ; - char eb_names(num_el_blk, len_string) ; - int ns_status(num_node_sets) ; - int ns_prop1(num_node_sets) ; - ns_prop1:name = "ID" ; - char ns_names(num_node_sets, len_string) ; - int node_ns1(num_nod_ns1) ; - double dist_fact_ns1(num_nod_ns1) ; - int elem_map(num_elem) ; - int eb_status(num_el_blk) ; - int eb_prop1(num_el_blk) ; - eb_prop1:name = "ID" ; - int connect1(num_el_in_blk1, num_nod_per_el1) ; - connect1:elem_type = "QUAD4" ; - int connect2(num_el_in_blk2, num_nod_per_el2) ; - connect2:elem_type = "QUAD4" ; - int connect3(num_el_in_blk3, num_nod_per_el3) ; - connect3:elem_type = "QUAD4" ; - double coord(num_dim, num_nodes) ; - -// global attributes: - :api_version = 4.98f ; - :version = 4.98f ; - :floating_point_word_size = 8 ; - :file_size = 0 ; - :title = "cubit(fuel_volume.exo): 01/11/2012: 10:58:34" ; -data: - - qa_records = - "CUBIT", - "13.0", - "01/11/2012", - "10:58:34" ; - - coor_names = - "x", - "y" ; - - eb_names = - "Fuel", - "Clad", - "Environ" ; - - ns_status = 1 ; - - ns_prop1 = 1 ; - - ns_names = - "Ambient" ; - - node_ns1 = 497, 498, 501, 503, 505, 507, 509, 511, 513, 515, 517, 519, 521, - 523, 525, 527, 529, 531, 533, 535, 537, 539, 541, 543, 545, 547, 549, - 551, 553, 555, 557, 559, 561, 563, 565, 567, 569, 571, 573, 575, 577, - 579, 581, 583, 585, 587, 589, 591, 593, 595, 597, 599, 601, 603, 605, - 607, 609, 611, 613, 615, 617, 619, 621, 623, 625, 627, 629, 631, 633, - 635, 637, 639, 641, 643, 645, 647, 649, 651, 653, 655, 657, 659, 661, - 663, 665, 667, 669, 671, 673, 675, 677, 679, 681, 683, 685, 687, 689, - 691, 693, 695, 697, 699, 701, 703, 705, 707, 709, 711, 713, 715, 717, - 719, 721, 723, 725, 727, 729, 731, 733, 735, 737, 739, 741, 743, 745, 747 ; - - dist_fact_ns1 = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ; - - elem_map = 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, 1202, 1203, 1204, 1205, 1206, - 1207, 1208, 1209, 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, - 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, - 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, - 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, - 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, - 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, - 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, - 1327, 1328 ; - - eb_status = 1, 1, 1 ; - - eb_prop1 = 1, 2, 3 ; - - connect1 = - 1, 2, 3, 4, - 2, 5, 6, 3, - 5, 7, 8, 6, - 7, 9, 10, 8, - 9, 11, 12, 10, - 11, 13, 14, 12, - 13, 15, 16, 14, - 15, 17, 18, 16, - 17, 19, 20, 18, - 19, 21, 22, 20, - 21, 23, 24, 22, - 23, 25, 26, 24, - 25, 27, 28, 26, - 27, 29, 30, 28, - 29, 31, 32, 30, - 31, 33, 34, 32, - 33, 35, 36, 34, - 35, 37, 38, 36, - 37, 39, 40, 38, - 39, 41, 42, 40, - 41, 43, 44, 42, - 43, 45, 46, 44, - 45, 47, 48, 46, - 47, 49, 50, 48, - 49, 51, 52, 50, - 51, 53, 54, 52, - 53, 55, 56, 54, - 55, 57, 58, 56, - 57, 59, 60, 58, - 59, 61, 62, 60, - 61, 63, 64, 62, - 63, 65, 66, 64, - 65, 67, 68, 66, - 67, 69, 70, 68, - 69, 71, 72, 70, - 71, 73, 74, 72, - 73, 75, 76, 74, - 75, 77, 78, 76, - 77, 79, 80, 78, - 79, 81, 82, 80, - 81, 83, 84, 82, - 83, 85, 86, 84, - 85, 87, 88, 86, - 87, 89, 90, 88, - 89, 91, 92, 90, - 91, 93, 94, 92, - 93, 95, 96, 94, - 95, 97, 98, 96, - 97, 99, 100, 98, - 99, 101, 102, 100, - 101, 103, 104, 102, - 103, 105, 106, 104, - 105, 107, 108, 106, - 107, 109, 110, 108, - 109, 111, 112, 110, - 111, 113, 114, 112, - 113, 115, 116, 114, - 115, 1, 4, 116, - 3, 6, 117, 118, - 6, 8, 119, 117, - 8, 10, 120, 119, - 10, 12, 121, 120, - 14, 16, 121, 12, - 16, 18, 122, 121, - 18, 20, 123, 122, - 20, 22, 124, 123, - 22, 24, 125, 124, - 24, 26, 126, 125, - 26, 28, 127, 126, - 28, 30, 128, 127, - 30, 32, 129, 128, - 34, 36, 129, 32, - 36, 38, 130, 129, - 38, 40, 131, 130, - 40, 42, 132, 131, - 42, 44, 133, 132, - 44, 46, 134, 133, - 46, 48, 135, 134, - 48, 50, 136, 135, - 52, 54, 136, 50, - 54, 56, 137, 136, - 56, 58, 138, 137, - 58, 60, 139, 138, - 60, 62, 140, 139, - 62, 64, 141, 140, - 64, 66, 142, 141, - 66, 68, 143, 142, - 68, 70, 144, 143, - 72, 74, 144, 70, - 74, 76, 145, 144, - 76, 78, 146, 145, - 78, 80, 147, 146, - 80, 82, 148, 147, - 82, 84, 149, 148, - 84, 86, 150, 149, - 86, 88, 151, 150, - 88, 90, 152, 151, - 94, 96, 153, 154, - 96, 98, 155, 153, - 98, 100, 156, 155, - 100, 102, 157, 156, - 102, 104, 158, 157, - 104, 106, 159, 158, - 106, 108, 160, 159, - 110, 112, 160, 108, - 112, 114, 161, 160, - 114, 116, 162, 161, - 116, 4, 163, 162, - 4, 3, 118, 163, - 117, 119, 164, 165, - 119, 120, 166, 164, - 120, 121, 167, 166, - 121, 122, 168, 167, - 122, 123, 169, 168, - 123, 124, 170, 169, - 124, 125, 171, 170, - 125, 126, 172, 171, - 126, 127, 173, 172, - 127, 128, 174, 173, - 128, 129, 175, 174, - 129, 130, 176, 175, - 130, 131, 177, 176, - 131, 132, 178, 177, - 134, 135, 179, 178, - 135, 136, 180, 179, - 136, 137, 181, 180, - 137, 138, 182, 181, - 138, 139, 183, 182, - 139, 140, 184, 183, - 140, 141, 185, 184, - 141, 142, 186, 185, - 142, 143, 187, 186, - 143, 144, 188, 187, - 144, 145, 189, 188, - 145, 146, 190, 189, - 146, 147, 191, 190, - 147, 148, 192, 191, - 148, 149, 193, 192, - 149, 150, 194, 193, - 150, 151, 195, 194, - 151, 152, 196, 195, - 153, 155, 197, 198, - 155, 156, 199, 197, - 156, 157, 200, 199, - 157, 158, 201, 200, - 158, 159, 202, 201, - 159, 160, 203, 202, - 160, 161, 204, 203, - 161, 162, 205, 204, - 162, 163, 206, 205, - 163, 118, 207, 206, - 118, 117, 165, 207, - 164, 166, 208, 209, - 166, 167, 210, 208, - 167, 168, 211, 210, - 168, 169, 212, 211, - 169, 170, 213, 212, - 170, 171, 214, 213, - 172, 173, 214, 171, - 173, 174, 215, 214, - 174, 175, 216, 215, - 175, 176, 217, 216, - 176, 177, 218, 217, - 177, 178, 179, 218, - 180, 181, 219, 220, - 181, 182, 221, 219, - 182, 183, 222, 221, - 183, 184, 223, 222, - 186, 187, 224, 225, - 187, 188, 226, 224, - 188, 189, 227, 226, - 189, 190, 228, 227, - 190, 191, 229, 228, - 192, 193, 229, 191, - 193, 194, 230, 229, - 194, 195, 231, 230, - 195, 196, 232, 231, - 199, 200, 233, 197, - 200, 201, 234, 233, - 201, 202, 235, 234, - 202, 203, 236, 235, - 203, 204, 237, 236, - 204, 205, 238, 237, - 205, 206, 239, 238, - 206, 207, 240, 239, - 207, 165, 241, 240, - 165, 164, 209, 241, - 237, 238, 242, 243, - 238, 239, 244, 242, - 239, 240, 245, 244, - 240, 241, 246, 245, - 241, 209, 247, 246, - 208, 210, 247, 209, - 210, 211, 248, 247, - 211, 212, 249, 248, - 212, 213, 250, 249, - 213, 214, 251, 250, - 214, 215, 252, 251, - 215, 216, 253, 252, - 216, 217, 254, 253, - 217, 218, 255, 254, - 218, 179, 256, 255, - 219, 221, 257, 258, - 221, 222, 259, 257, - 222, 223, 260, 259, - 225, 224, 261, 262, - 227, 228, 263, 261, - 228, 229, 264, 263, - 229, 230, 265, 264, - 230, 231, 266, 265, - 234, 235, 267, 268, - 235, 236, 269, 267, - 236, 237, 243, 269, - 242, 244, 270, 271, - 244, 245, 272, 270, - 245, 246, 273, 272, - 246, 247, 274, 273, - 247, 248, 275, 274, - 248, 249, 276, 275, - 249, 250, 277, 276, - 250, 251, 278, 277, - 252, 253, 278, 251, - 253, 254, 279, 278, - 254, 255, 280, 279, - 255, 256, 281, 280, - 258, 257, 282, 283, - 257, 259, 284, 282, - 261, 263, 285, 262, - 263, 264, 286, 285, - 264, 265, 287, 286, - 265, 266, 288, 287, - 266, 289, 290, 288, - 268, 267, 291, 292, - 267, 269, 293, 291, - 269, 243, 294, 293, - 243, 242, 271, 294, - 278, 279, 295, 277, - 279, 280, 296, 295, - 280, 281, 283, 296, - 285, 286, 297, 298, - 286, 287, 299, 297, - 287, 288, 300, 299, - 288, 290, 301, 300, - 290, 292, 291, 301, - 294, 271, 302, 303, - 271, 270, 304, 302, - 270, 272, 305, 304, - 272, 273, 306, 305, - 273, 274, 307, 306, - 274, 275, 308, 307, - 275, 276, 309, 308, - 276, 277, 310, 309, - 277, 295, 311, 310, - 295, 296, 312, 311, - 296, 283, 282, 312, - 298, 297, 313, 314, - 303, 302, 315, 316, - 302, 304, 317, 315, - 308, 309, 315, 317, - 309, 310, 318, 315, - 310, 311, 319, 318, - 311, 312, 314, 319, - 314, 313, 316, 319, - 133, 134, 178, 132, - 179, 180, 220, 256, - 261, 224, 226, 227, - 260, 320, 284, 259, - 231, 232, 289, 266, - 289, 321, 292, 290, - 321, 322, 268, 292, - 322, 233, 234, 268, - 321, 289, 232, 323, - 322, 321, 323, 198, - 233, 322, 198, 197, - 291, 293, 324, 301, - 293, 294, 303, 324, - 324, 303, 316, 313, - 301, 324, 313, 300, - 307, 308, 317, 306, - 306, 317, 304, 305, - 318, 319, 316, 315, - 313, 297, 299, 300, - 184, 185, 325, 223, - 185, 186, 225, 325, - 325, 225, 262, 326, - 223, 325, 326, 260, - 260, 326, 298, 320, - 326, 262, 285, 298, - 154, 153, 198, 323, - 232, 196, 154, 323, - 152, 90, 92, 327, - 154, 196, 152, 327, - 327, 92, 94, 154, - 283, 281, 328, 258, - 281, 256, 220, 328, - 328, 220, 219, 258, - 282, 284, 314, 312, - 284, 320, 298, 314 ; - - connect2 = - 329, 330, 2, 1, - 330, 331, 5, 2, - 331, 332, 7, 5, - 333, 334, 335, 336, - 17, 15, 336, 335, - 337, 338, 25, 23, - 338, 339, 27, 25, - 339, 340, 29, 27, - 340, 341, 31, 29, - 341, 342, 33, 31, - 342, 343, 35, 33, - 343, 344, 37, 35, - 345, 346, 347, 348, - 45, 43, 348, 347, - 349, 350, 55, 53, - 350, 351, 57, 55, - 351, 352, 59, 57, - 352, 353, 61, 59, - 353, 354, 63, 61, - 354, 355, 65, 63, - 356, 357, 358, 359, - 75, 73, 359, 358, - 360, 361, 83, 81, - 361, 362, 85, 83, - 362, 363, 87, 85, - 363, 364, 89, 87, - 364, 365, 91, 89, - 365, 366, 93, 91, - 366, 367, 95, 93, - 368, 369, 370, 371, - 103, 101, 371, 370, - 372, 373, 113, 111, - 115, 113, 373, 374, - 374, 329, 1, 115, - 375, 370, 369, 376, - 375, 105, 103, 370, - 377, 375, 376, 378, - 377, 107, 105, 375, - 379, 377, 378, 380, - 379, 109, 107, 377, - 381, 379, 380, 382, - 381, 382, 372, 111, - 381, 111, 109, 379, - 383, 384, 368, 371, - 383, 371, 101, 99, - 385, 386, 384, 383, - 385, 383, 99, 97, - 387, 95, 367, 388, - 387, 388, 386, 385, - 387, 385, 97, 95, - 389, 358, 357, 390, - 389, 77, 75, 358, - 391, 389, 390, 392, - 391, 79, 77, 389, - 393, 391, 392, 394, - 393, 394, 360, 81, - 393, 81, 79, 391, - 395, 396, 356, 359, - 395, 359, 73, 71, - 397, 398, 396, 395, - 397, 395, 71, 69, - 399, 400, 398, 397, - 399, 397, 69, 67, - 401, 65, 355, 402, - 401, 402, 400, 399, - 401, 399, 67, 65, - 403, 347, 346, 404, - 403, 47, 45, 347, - 405, 403, 404, 406, - 405, 49, 47, 403, - 407, 405, 406, 408, - 407, 51, 49, 405, - 409, 407, 408, 410, - 409, 410, 349, 53, - 409, 53, 51, 407, - 411, 412, 345, 348, - 411, 348, 43, 41, - 413, 414, 412, 411, - 413, 411, 41, 39, - 415, 37, 344, 416, - 415, 416, 414, 413, - 415, 413, 39, 37, - 417, 335, 334, 418, - 417, 19, 17, 335, - 419, 417, 418, 420, - 419, 21, 19, 417, - 421, 419, 420, 422, - 421, 422, 337, 23, - 421, 23, 21, 419, - 423, 424, 333, 336, - 423, 336, 15, 13, - 425, 426, 424, 423, - 425, 423, 13, 11, - 427, 428, 426, 425, - 427, 425, 11, 9, - 429, 7, 332, 430, - 429, 430, 428, 427, - 429, 427, 9, 7 ; - - connect3 = - 329, 374, 431, 432, - 374, 373, 433, 431, - 373, 372, 434, 433, - 372, 382, 435, 434, - 382, 380, 436, 435, - 380, 378, 437, 436, - 378, 376, 438, 437, - 376, 369, 439, 438, - 369, 368, 440, 439, - 368, 384, 441, 440, - 384, 386, 442, 441, - 386, 388, 443, 442, - 388, 367, 444, 443, - 367, 366, 445, 444, - 366, 365, 446, 445, - 365, 364, 447, 446, - 364, 363, 448, 447, - 363, 362, 449, 448, - 362, 361, 450, 449, - 361, 360, 451, 450, - 360, 394, 452, 451, - 394, 392, 453, 452, - 392, 390, 454, 453, - 390, 357, 455, 454, - 357, 356, 456, 455, - 356, 396, 457, 456, - 396, 398, 458, 457, - 398, 400, 459, 458, - 400, 402, 460, 459, - 402, 355, 461, 460, - 355, 354, 462, 461, - 354, 353, 463, 462, - 353, 352, 464, 463, - 352, 351, 465, 464, - 351, 350, 466, 465, - 350, 349, 467, 466, - 349, 410, 468, 467, - 410, 408, 469, 468, - 408, 406, 470, 469, - 406, 404, 471, 470, - 404, 346, 472, 471, - 346, 345, 473, 472, - 345, 412, 474, 473, - 412, 414, 475, 474, - 414, 416, 476, 475, - 416, 344, 477, 476, - 344, 343, 478, 477, - 343, 342, 479, 478, - 342, 341, 480, 479, - 341, 340, 481, 480, - 340, 339, 482, 481, - 339, 338, 483, 482, - 338, 337, 484, 483, - 337, 422, 485, 484, - 422, 420, 486, 485, - 420, 418, 487, 486, - 418, 334, 488, 487, - 334, 333, 489, 488, - 333, 424, 490, 489, - 424, 426, 491, 490, - 426, 428, 492, 491, - 428, 430, 493, 492, - 430, 332, 494, 493, - 332, 331, 495, 494, - 331, 330, 496, 495, - 330, 329, 432, 496, - 497, 498, 499, 500, - 498, 501, 502, 499, - 501, 503, 504, 502, - 503, 505, 506, 504, - 505, 507, 508, 506, - 507, 509, 510, 508, - 509, 511, 512, 510, - 511, 513, 514, 512, - 513, 515, 516, 514, - 515, 517, 518, 516, - 517, 519, 520, 518, - 519, 521, 522, 520, - 521, 523, 524, 522, - 523, 525, 526, 524, - 525, 527, 528, 526, - 527, 529, 530, 528, - 529, 531, 532, 530, - 531, 533, 534, 532, - 533, 535, 536, 534, - 535, 537, 538, 536, - 537, 539, 540, 538, - 539, 541, 542, 540, - 541, 543, 544, 542, - 543, 545, 546, 544, - 545, 547, 548, 546, - 547, 549, 550, 548, - 549, 551, 552, 550, - 551, 553, 554, 552, - 553, 555, 556, 554, - 555, 557, 558, 556, - 557, 559, 560, 558, - 559, 561, 562, 560, - 561, 563, 564, 562, - 563, 565, 566, 564, - 565, 567, 568, 566, - 567, 569, 570, 568, - 569, 571, 572, 570, - 571, 573, 574, 572, - 573, 575, 576, 574, - 575, 577, 578, 576, - 577, 579, 580, 578, - 579, 581, 582, 580, - 581, 583, 584, 582, - 583, 585, 586, 584, - 585, 587, 588, 586, - 587, 589, 590, 588, - 589, 591, 592, 590, - 591, 593, 594, 592, - 593, 595, 596, 594, - 595, 597, 598, 596, - 597, 599, 600, 598, - 599, 601, 602, 600, - 601, 603, 604, 602, - 603, 605, 606, 604, - 605, 607, 608, 606, - 607, 609, 610, 608, - 609, 611, 612, 610, - 611, 613, 614, 612, - 613, 615, 616, 614, - 615, 617, 618, 616, - 617, 619, 620, 618, - 619, 621, 622, 620, - 621, 623, 624, 622, - 623, 625, 626, 624, - 625, 627, 628, 626, - 627, 629, 630, 628, - 629, 631, 632, 630, - 631, 633, 634, 632, - 633, 635, 636, 634, - 635, 637, 638, 636, - 637, 639, 640, 638, - 639, 641, 642, 640, - 641, 643, 644, 642, - 643, 645, 646, 644, - 645, 647, 648, 646, - 647, 649, 650, 648, - 649, 651, 652, 650, - 651, 653, 654, 652, - 653, 655, 656, 654, - 655, 657, 658, 656, - 657, 659, 660, 658, - 659, 661, 662, 660, - 661, 663, 664, 662, - 663, 665, 666, 664, - 665, 667, 668, 666, - 667, 669, 670, 668, - 669, 671, 672, 670, - 671, 673, 674, 672, - 673, 675, 676, 674, - 675, 677, 678, 676, - 677, 679, 680, 678, - 679, 681, 682, 680, - 681, 683, 684, 682, - 683, 685, 686, 684, - 685, 687, 688, 686, - 687, 689, 690, 688, - 689, 691, 692, 690, - 691, 693, 694, 692, - 693, 695, 696, 694, - 695, 697, 698, 696, - 697, 699, 700, 698, - 699, 701, 702, 700, - 701, 703, 704, 702, - 703, 705, 706, 704, - 705, 707, 708, 706, - 707, 709, 710, 708, - 709, 711, 712, 710, - 711, 713, 714, 712, - 713, 715, 716, 714, - 715, 717, 718, 716, - 717, 719, 720, 718, - 719, 721, 722, 720, - 721, 723, 724, 722, - 723, 725, 726, 724, - 725, 727, 728, 726, - 727, 729, 730, 728, - 729, 731, 732, 730, - 731, 733, 734, 732, - 733, 735, 736, 734, - 735, 737, 738, 736, - 737, 739, 740, 738, - 739, 741, 742, 740, - 741, 743, 744, 742, - 743, 745, 746, 744, - 745, 747, 748, 746, - 747, 497, 500, 748, - 431, 433, 749, 750, - 433, 434, 751, 749, - 434, 435, 752, 751, - 435, 436, 753, 752, - 436, 437, 754, 753, - 437, 438, 755, 754, - 439, 440, 756, 757, - 440, 441, 758, 756, - 441, 442, 759, 758, - 442, 443, 760, 759, - 443, 444, 761, 760, - 444, 445, 762, 761, - 445, 446, 763, 762, - 446, 447, 764, 763, - 447, 448, 765, 764, - 448, 449, 766, 765, - 450, 451, 767, 768, - 451, 452, 769, 767, - 452, 453, 770, 769, - 453, 454, 771, 770, - 454, 455, 772, 771, - 455, 456, 773, 772, - 456, 457, 774, 773, - 457, 458, 775, 774, - 458, 459, 776, 775, - 459, 460, 777, 776, - 461, 462, 778, 779, - 462, 463, 780, 778, - 463, 464, 781, 780, - 464, 465, 782, 781, - 465, 466, 783, 782, - 466, 467, 784, 783, - 467, 468, 785, 784, - 468, 469, 786, 785, - 469, 470, 787, 786, - 470, 471, 788, 787, - 472, 473, 789, 790, - 473, 474, 791, 789, - 474, 475, 792, 791, - 475, 476, 793, 792, - 476, 477, 794, 793, - 477, 478, 795, 794, - 478, 479, 796, 795, - 479, 480, 797, 796, - 480, 481, 798, 797, - 481, 482, 799, 798, - 483, 484, 800, 801, - 484, 485, 802, 800, - 485, 486, 803, 802, - 486, 487, 804, 803, - 487, 488, 805, 804, - 488, 489, 806, 805, - 489, 490, 807, 806, - 490, 491, 808, 807, - 491, 492, 809, 808, - 492, 493, 810, 809, - 494, 495, 811, 812, - 495, 496, 813, 811, - 496, 432, 814, 813, - 432, 431, 750, 814, - 493, 494, 812, 815, - 810, 493, 815, 816, - 482, 483, 801, 817, - 799, 482, 817, 818, - 471, 472, 790, 819, - 788, 471, 819, 820, - 460, 461, 779, 821, - 777, 460, 821, 822, - 449, 450, 768, 823, - 766, 449, 823, 824, - 438, 439, 757, 825, - 755, 438, 825, 826, - 499, 502, 827, 828, - 502, 504, 829, 827, - 504, 506, 830, 829, - 506, 508, 831, 830, - 508, 510, 832, 831, - 510, 512, 833, 832, - 512, 514, 834, 833, - 514, 516, 835, 834, - 516, 518, 836, 835, - 518, 520, 837, 836, - 522, 524, 837, 520, - 524, 526, 838, 837, - 526, 528, 839, 838, - 528, 530, 840, 839, - 530, 532, 841, 840, - 532, 534, 842, 841, - 534, 536, 843, 842, - 536, 538, 844, 843, - 538, 540, 845, 844, - 540, 542, 846, 845, - 542, 544, 847, 846, - 544, 546, 848, 847, - 546, 548, 849, 848, - 548, 550, 850, 849, - 550, 552, 851, 850, - 552, 554, 852, 851, - 554, 556, 853, 852, - 556, 558, 854, 853, - 558, 560, 855, 854, - 560, 562, 856, 855, - 564, 566, 856, 562, - 566, 568, 857, 856, - 568, 570, 858, 857, - 570, 572, 859, 858, - 572, 574, 860, 859, - 574, 576, 861, 860, - 576, 578, 862, 861, - 578, 580, 863, 862, - 580, 582, 864, 863, - 582, 584, 865, 864, - 584, 586, 866, 865, - 586, 588, 867, 866, - 588, 590, 868, 867, - 590, 592, 869, 868, - 592, 594, 870, 869, - 594, 596, 871, 870, - 596, 598, 872, 871, - 598, 600, 873, 872, - 600, 602, 874, 873, - 602, 604, 875, 874, - 606, 608, 875, 604, - 608, 610, 876, 875, - 610, 612, 877, 876, - 612, 614, 878, 877, - 614, 616, 879, 878, - 616, 618, 880, 879, - 618, 620, 881, 880, - 620, 622, 882, 881, - 622, 624, 883, 882, - 624, 626, 884, 883, - 626, 628, 885, 884, - 628, 630, 886, 885, - 630, 632, 887, 886, - 632, 634, 888, 887, - 634, 636, 889, 888, - 636, 638, 890, 889, - 638, 640, 891, 890, - 640, 642, 892, 891, - 642, 644, 893, 892, - 644, 646, 894, 893, - 648, 650, 894, 646, - 650, 652, 895, 894, - 652, 654, 896, 895, - 654, 656, 897, 896, - 656, 658, 898, 897, - 658, 660, 899, 898, - 660, 662, 900, 899, - 662, 664, 901, 900, - 664, 666, 902, 901, - 666, 668, 903, 902, - 668, 670, 904, 903, - 670, 672, 905, 904, - 672, 674, 906, 905, - 674, 676, 907, 906, - 676, 678, 908, 907, - 678, 680, 909, 908, - 680, 682, 910, 909, - 682, 684, 911, 910, - 684, 686, 912, 911, - 686, 688, 913, 912, - 690, 692, 913, 688, - 692, 694, 914, 913, - 694, 696, 915, 914, - 696, 698, 916, 915, - 698, 700, 917, 916, - 700, 702, 918, 917, - 702, 704, 919, 918, - 704, 706, 920, 919, - 706, 708, 921, 920, - 708, 710, 922, 921, - 710, 712, 923, 922, - 712, 714, 924, 923, - 714, 716, 925, 924, - 716, 718, 926, 925, - 718, 720, 927, 926, - 720, 722, 928, 927, - 722, 724, 929, 928, - 724, 726, 930, 929, - 726, 728, 931, 930, - 728, 730, 932, 931, - 732, 734, 932, 730, - 734, 736, 933, 932, - 736, 738, 934, 933, - 738, 740, 935, 934, - 740, 742, 936, 935, - 742, 744, 937, 936, - 744, 746, 938, 937, - 746, 748, 939, 938, - 748, 500, 940, 939, - 500, 499, 828, 940, - 826, 825, 941, 942, - 825, 757, 943, 941, - 757, 756, 944, 943, - 756, 758, 945, 944, - 758, 759, 946, 945, - 759, 760, 947, 946, - 760, 761, 948, 947, - 761, 762, 949, 948, - 762, 763, 950, 949, - 763, 764, 951, 950, - 764, 765, 952, 951, - 765, 766, 953, 952, - 766, 824, 954, 953, - 824, 955, 956, 954, - 824, 823, 957, 955, - 823, 768, 958, 957, - 768, 767, 959, 958, - 767, 769, 960, 959, - 769, 770, 961, 960, - 770, 771, 962, 961, - 771, 772, 963, 962, - 772, 773, 964, 963, - 773, 774, 965, 964, - 774, 775, 966, 965, - 775, 776, 967, 966, - 776, 777, 968, 967, - 777, 822, 969, 968, - 822, 970, 971, 969, - 822, 821, 972, 970, - 821, 779, 973, 972, - 779, 778, 974, 973, - 778, 780, 975, 974, - 780, 781, 976, 975, - 781, 782, 977, 976, - 782, 783, 978, 977, - 783, 784, 979, 978, - 784, 785, 980, 979, - 785, 786, 981, 980, - 786, 787, 982, 981, - 787, 788, 983, 982, - 788, 820, 984, 983, - 820, 985, 986, 984, - 820, 819, 987, 985, - 819, 790, 988, 987, - 790, 789, 989, 988, - 789, 791, 990, 989, - 791, 792, 991, 990, - 792, 793, 992, 991, - 793, 794, 993, 992, - 794, 795, 994, 993, - 795, 796, 995, 994, - 796, 797, 996, 995, - 797, 798, 997, 996, - 798, 799, 998, 997, - 799, 818, 999, 998, - 818, 1000, 1001, 999, - 818, 817, 1002, 1000, - 817, 801, 1003, 1002, - 801, 800, 1004, 1003, - 800, 802, 1005, 1004, - 802, 803, 1006, 1005, - 803, 804, 1007, 1006, - 804, 805, 1008, 1007, - 805, 806, 1009, 1008, - 806, 807, 1010, 1009, - 807, 808, 1011, 1010, - 808, 809, 1012, 1011, - 809, 810, 1013, 1012, - 810, 816, 1014, 1013, - 816, 1015, 1016, 1014, - 816, 815, 1017, 1015, - 815, 812, 1018, 1017, - 812, 811, 1019, 1018, - 811, 813, 1020, 1019, - 813, 814, 1021, 1020, - 814, 750, 1022, 1021, - 750, 749, 1023, 1022, - 749, 751, 1024, 1023, - 751, 752, 1025, 1024, - 752, 753, 1026, 1025, - 753, 754, 1027, 1026, - 754, 755, 1028, 1027, - 755, 826, 1029, 1028, - 826, 942, 1030, 1029, - 942, 1031, 1032, 1030, - 942, 941, 1033, 1031, - 827, 829, 1034, 1035, - 829, 830, 1036, 1034, - 830, 831, 1037, 1036, - 831, 832, 1038, 1037, - 832, 833, 1039, 1038, - 833, 834, 1040, 1039, - 834, 835, 1041, 1040, - 835, 836, 1042, 1041, - 836, 837, 1043, 1042, - 837, 838, 1044, 1043, - 838, 839, 1045, 1044, - 839, 840, 1046, 1045, - 840, 841, 1047, 1046, - 841, 842, 1048, 1047, - 842, 843, 1049, 1048, - 843, 844, 1050, 1049, - 844, 845, 1051, 1050, - 847, 848, 1052, 846, - 848, 849, 1053, 1052, - 849, 850, 1054, 1053, - 850, 851, 1055, 1054, - 851, 852, 1056, 1055, - 852, 853, 1057, 1056, - 853, 854, 1058, 1057, - 854, 855, 1059, 1058, - 855, 856, 1060, 1059, - 856, 857, 1061, 1060, - 857, 858, 1062, 1061, - 858, 859, 1063, 1062, - 859, 860, 1064, 1063, - 860, 861, 1065, 1064, - 861, 862, 1066, 1065, - 862, 863, 1067, 1066, - 863, 864, 1068, 1067, - 866, 867, 1069, 865, - 867, 868, 1070, 1069, - 868, 869, 1071, 1070, - 869, 870, 1072, 1071, - 870, 871, 1073, 1072, - 871, 872, 1074, 1073, - 872, 873, 1075, 1074, - 873, 874, 1076, 1075, - 874, 875, 1077, 1076, - 875, 876, 1078, 1077, - 876, 877, 1079, 1078, - 877, 878, 1080, 1079, - 878, 879, 1081, 1080, - 879, 880, 1082, 1081, - 880, 881, 1083, 1082, - 881, 882, 1084, 1083, - 882, 883, 1085, 1084, - 883, 884, 1086, 1085, - 884, 885, 1087, 1086, - 885, 886, 1088, 1087, - 886, 887, 1089, 1088, - 887, 888, 1090, 1089, - 888, 889, 1091, 1090, - 889, 890, 1092, 1091, - 890, 891, 1093, 1092, - 891, 892, 1094, 1093, - 892, 893, 1095, 1094, - 893, 894, 1096, 1095, - 894, 895, 1097, 1096, - 895, 896, 1098, 1097, - 896, 897, 1099, 1098, - 897, 898, 1100, 1099, - 898, 899, 1101, 1100, - 899, 900, 1102, 1101, - 900, 901, 1103, 1102, - 901, 902, 1104, 1103, - 902, 903, 1105, 1104, - 903, 904, 1106, 1105, - 904, 905, 1107, 1106, - 905, 906, 1108, 1107, - 906, 907, 1109, 1108, - 907, 908, 1110, 1109, - 908, 909, 1111, 1110, - 909, 910, 1112, 1111, - 910, 911, 1113, 1112, - 911, 912, 1114, 1113, - 912, 913, 1115, 1114, - 913, 914, 1116, 1115, - 914, 915, 1117, 1116, - 915, 916, 1118, 1117, - 916, 917, 1119, 1118, - 917, 918, 1120, 1119, - 918, 919, 1121, 1120, - 919, 920, 1122, 1121, - 920, 921, 1123, 1122, - 921, 922, 1124, 1123, - 922, 923, 1125, 1124, - 923, 924, 1126, 1125, - 924, 925, 1127, 1126, - 925, 926, 1128, 1127, - 926, 927, 1032, 1128, - 927, 928, 1129, 1032, - 928, 929, 1130, 1129, - 929, 930, 1131, 1130, - 930, 931, 1132, 1131, - 931, 932, 1133, 1132, - 932, 933, 1134, 1133, - 933, 934, 1135, 1134, - 934, 935, 1136, 1135, - 935, 936, 1137, 1136, - 936, 937, 1138, 1137, - 937, 938, 1139, 1138, - 938, 939, 1140, 1139, - 939, 940, 1141, 1140, - 940, 828, 1142, 1141, - 828, 827, 1035, 1142, - 998, 999, 1143, 997, - 999, 1001, 1144, 1143, - 1001, 1145, 1146, 1144, - 1001, 1000, 1147, 1145, - 1000, 1002, 1148, 1147, - 1002, 1003, 1149, 1148, - 1003, 1004, 1150, 1149, - 1004, 1005, 1151, 1150, - 1005, 1006, 1152, 1151, - 1006, 1007, 1153, 1152, - 1009, 1010, 1154, 1155, - 1010, 1011, 1156, 1154, - 1008, 1009, 1155, 1157, - 969, 971, 1158, 1159, - 971, 1160, 1161, 1158, - 971, 970, 1162, 1160, - 970, 972, 1163, 1162, - 972, 973, 1164, 1163, - 973, 974, 1165, 1164, - 974, 975, 1166, 1165, - 975, 976, 1167, 1166, - 976, 977, 1168, 1167, - 977, 978, 1169, 1168, - 979, 980, 1170, 1171, - 980, 981, 1172, 1170, - 978, 979, 1171, 1169, - 984, 986, 1173, 1174, - 986, 1175, 1176, 1173, - 986, 985, 1177, 1175, - 985, 987, 1178, 1177, - 987, 988, 1179, 1178, - 988, 989, 1180, 1179, - 989, 990, 1181, 1180, - 990, 991, 1182, 1181, - 991, 992, 1183, 1182, - 994, 995, 1184, 1185, - 995, 996, 1186, 1184, - 996, 997, 1143, 1186, - 993, 994, 1185, 1187, - 954, 956, 1188, 1189, - 956, 1190, 1191, 1188, - 956, 955, 1192, 1190, - 955, 957, 1193, 1192, - 957, 958, 1194, 1193, - 958, 959, 1195, 1194, - 959, 960, 1196, 1195, - 960, 961, 1197, 1196, - 961, 962, 1198, 1197, - 962, 963, 1199, 1198, - 964, 965, 1200, 1201, - 965, 966, 1202, 1200, - 963, 964, 1201, 1199, - 1014, 1016, 1203, 1204, - 1016, 1205, 1206, 1203, - 1016, 1015, 1207, 1205, - 1015, 1017, 1208, 1207, - 1017, 1018, 1209, 1208, - 1018, 1019, 1210, 1209, - 1019, 1020, 1211, 1210, - 1020, 1021, 1212, 1211, - 1021, 1022, 1213, 1212, - 1022, 1023, 1214, 1213, - 1023, 1024, 1215, 1214, - 1024, 1025, 1216, 1215, - 1025, 1026, 1217, 1216, - 1026, 1027, 1218, 1217, - 1027, 1028, 1219, 1218, - 1028, 1029, 1220, 1219, - 1029, 1030, 1221, 1220, - 1030, 1032, 1129, 1221, - 941, 943, 1222, 1033, - 943, 944, 1223, 1222, - 944, 945, 1224, 1223, - 945, 946, 1225, 1224, - 946, 947, 1226, 1225, - 949, 950, 1227, 1228, - 950, 951, 1229, 1227, - 948, 949, 1228, 1230, - 1129, 1130, 1231, 1221, - 1130, 1131, 1232, 1231, - 1131, 1132, 1233, 1232, - 1132, 1133, 1234, 1233, - 1133, 1134, 1235, 1234, - 1134, 1135, 1236, 1235, - 1135, 1136, 1237, 1236, - 1136, 1137, 1238, 1237, - 1138, 1139, 1238, 1137, - 1139, 1140, 1239, 1238, - 1140, 1141, 1240, 1239, - 1141, 1142, 1241, 1240, - 1142, 1035, 1242, 1241, - 1035, 1034, 1243, 1242, - 1034, 1036, 1244, 1243, - 1036, 1037, 1245, 1244, - 1037, 1038, 1207, 1245, - 1038, 1039, 1205, 1207, - 1039, 1040, 1206, 1205, - 1207, 1208, 1244, 1245, - 1208, 1209, 1243, 1244, - 1209, 1210, 1242, 1243, - 1210, 1211, 1241, 1242, - 1211, 1212, 1246, 1241, - 1212, 1213, 1247, 1246, - 1213, 1214, 1248, 1247, - 1214, 1215, 1249, 1248, - 1215, 1216, 1250, 1249, - 1216, 1217, 1251, 1250, - 1217, 1218, 1252, 1251, - 1218, 1219, 1233, 1252, - 1219, 1220, 1232, 1233, - 1040, 1041, 1253, 1206, - 1041, 1042, 1254, 1253, - 1042, 1043, 1255, 1254, - 1043, 1044, 1256, 1255, - 1044, 1045, 1257, 1256, - 1045, 1046, 1258, 1257, - 1046, 1047, 1259, 1258, - 1047, 1048, 1260, 1259, - 1048, 1049, 1261, 1260, - 1049, 1050, 1262, 1261, - 1050, 1051, 1263, 1262, - 1051, 1264, 1265, 1263, - 1054, 1055, 1147, 1266, - 1055, 1056, 1145, 1147, - 1056, 1057, 1146, 1145, - 1221, 1231, 1232, 1220, - 1057, 1058, 1267, 1146, - 1058, 1059, 1268, 1267, - 1059, 1060, 1269, 1268, - 1060, 1061, 1270, 1269, - 1061, 1062, 1271, 1270, - 1062, 1063, 1272, 1271, - 1063, 1064, 1273, 1272, - 1064, 1065, 1274, 1273, - 1065, 1066, 1275, 1274, - 1066, 1067, 1276, 1275, - 1067, 1068, 1277, 1276, - 1068, 1278, 1279, 1277, - 1071, 1072, 1177, 1280, - 1072, 1073, 1175, 1177, - 1073, 1074, 1176, 1175, - 1147, 1148, 1281, 1266, - 1148, 1149, 1282, 1281, - 1149, 1150, 1283, 1282, - 1150, 1151, 1284, 1283, - 1151, 1152, 1285, 1284, - 1152, 1153, 1286, 1285, - 1153, 1287, 1288, 1286, - 1287, 1259, 1260, 1288, - 1074, 1075, 1289, 1176, - 1075, 1076, 1290, 1289, - 1076, 1077, 1291, 1290, - 1077, 1078, 1292, 1291, - 1078, 1079, 1293, 1292, - 1079, 1080, 1294, 1293, - 1080, 1081, 1295, 1294, - 1081, 1082, 1296, 1295, - 1082, 1083, 1297, 1296, - 1083, 1084, 1298, 1297, - 1084, 1085, 1299, 1298, - 1085, 1086, 1300, 1299, - 1086, 1087, 1301, 1300, - 1087, 1088, 1302, 1301, - 1088, 1089, 1303, 1302, - 1089, 1090, 1304, 1303, - 1090, 1091, 1162, 1304, - 1091, 1092, 1160, 1162, - 1092, 1093, 1161, 1160, - 1206, 1253, 1305, 1203, - 1253, 1254, 1306, 1305, - 1254, 1255, 1307, 1306, - 1255, 1256, 1308, 1307, - 1256, 1257, 1309, 1308, - 1257, 1258, 1310, 1309, - 1093, 1094, 1311, 1161, - 1094, 1095, 1312, 1311, - 1095, 1096, 1313, 1312, - 1096, 1097, 1314, 1313, - 1097, 1098, 1315, 1314, - 1098, 1099, 1316, 1315, - 1099, 1100, 1317, 1316, - 1100, 1101, 1318, 1317, - 1101, 1102, 1319, 1318, - 1102, 1103, 1320, 1319, - 1103, 1104, 1321, 1320, - 1104, 1105, 1322, 1321, - 1105, 1106, 1323, 1322, - 1106, 1107, 1324, 1323, - 1107, 1108, 1325, 1324, - 1108, 1109, 1193, 1325, - 1109, 1110, 1192, 1193, - 1110, 1111, 1190, 1192, - 1111, 1112, 1191, 1190, - 1157, 1155, 1309, 1310, - 1155, 1154, 1308, 1309, - 1112, 1113, 1326, 1191, - 1113, 1114, 1327, 1326, - 1114, 1115, 1328, 1327, - 1115, 1116, 1329, 1328, - 1116, 1117, 1330, 1329, - 1117, 1118, 1331, 1330, - 1118, 1119, 1332, 1331, - 1119, 1120, 1333, 1332, - 1120, 1121, 1334, 1333, - 1121, 1122, 1335, 1334, - 1122, 1123, 1336, 1335, - 1124, 1125, 1336, 1123, - 1125, 1126, 1337, 1336, - 1126, 1127, 1338, 1337, - 1127, 1128, 1339, 1338, - 1177, 1178, 1340, 1280, - 1178, 1179, 1341, 1340, - 1179, 1180, 1342, 1341, - 1180, 1181, 1343, 1342, - 1181, 1182, 1344, 1343, - 1182, 1183, 1345, 1344, - 1183, 1346, 1347, 1345, - 1346, 1273, 1274, 1347, - 1187, 1185, 1348, 1349, - 1185, 1184, 1350, 1348, - 1184, 1186, 1351, 1350, - 1186, 1143, 1352, 1351, - 1143, 1144, 1353, 1352, - 1144, 1146, 1267, 1353, - 1176, 1289, 1354, 1173, - 1289, 1290, 1355, 1354, - 1290, 1291, 1356, 1355, - 1291, 1292, 1357, 1356, - 1292, 1293, 1358, 1357, - 1293, 1294, 1171, 1358, - 1294, 1295, 1169, 1171, - 1295, 1296, 1168, 1169, - 1296, 1297, 1167, 1168, - 1297, 1298, 1166, 1167, - 1298, 1299, 1359, 1166, - 1300, 1301, 1359, 1299, - 1301, 1302, 1360, 1359, - 1302, 1303, 1361, 1360, - 1303, 1304, 1362, 1361, - 1304, 1162, 1163, 1362, - 1163, 1164, 1361, 1362, - 1164, 1165, 1360, 1361, - 1165, 1166, 1359, 1360, - 1171, 1170, 1357, 1358, - 1170, 1172, 1356, 1357, - 1161, 1311, 1363, 1158, - 1311, 1312, 1364, 1363, - 1312, 1313, 1365, 1364, - 1313, 1314, 1366, 1365, - 1314, 1315, 1367, 1366, - 1315, 1316, 1201, 1367, - 1316, 1317, 1199, 1201, - 1201, 1200, 1366, 1367, - 1200, 1202, 1365, 1366, - 1317, 1318, 1198, 1199, - 1318, 1319, 1197, 1198, - 1319, 1320, 1196, 1197, - 1320, 1321, 1368, 1196, - 1322, 1323, 1368, 1321, - 1323, 1324, 1369, 1368, - 1324, 1325, 1370, 1369, - 1325, 1193, 1194, 1370, - 1194, 1195, 1369, 1370, - 1031, 1033, 1371, 1339, - 1033, 1222, 1372, 1371, - 1222, 1223, 1373, 1372, - 1223, 1224, 1374, 1373, - 1224, 1225, 1375, 1374, - 1225, 1226, 1376, 1375, - 1226, 1377, 1378, 1376, - 1377, 1332, 1333, 1378, - 1191, 1326, 1379, 1188, - 1326, 1327, 1380, 1379, - 1327, 1328, 1381, 1380, - 1328, 1329, 1382, 1381, - 1329, 1330, 1383, 1382, - 1330, 1331, 1384, 1383, - 1230, 1228, 1383, 1384, - 1228, 1227, 1382, 1383, - 1227, 1229, 1381, 1382, - 1195, 1196, 1368, 1369, - 1154, 1156, 1307, 1308, - 1333, 1334, 1376, 1378, - 1334, 1335, 1375, 1376, - 1335, 1336, 1374, 1375, - 1336, 1337, 1373, 1374, - 1372, 1373, 1337, 1338, - 1338, 1339, 1371, 1372, - 1233, 1234, 1251, 1252, - 1234, 1235, 1250, 1251, - 1235, 1236, 1249, 1250, - 1274, 1275, 1345, 1347, - 1275, 1276, 1344, 1345, - 1276, 1277, 1343, 1344, - 1236, 1237, 1248, 1249, - 1342, 1343, 1277, 1279, - 1279, 1340, 1341, 1342, - 1237, 1238, 1247, 1248, - 1238, 1239, 1246, 1247, - 1239, 1240, 1241, 1246, - 1260, 1261, 1286, 1288, - 1261, 1262, 1285, 1286, - 1262, 1263, 1284, 1285, - 1267, 1268, 1352, 1353, - 1268, 1269, 1351, 1352, - 1269, 1270, 1350, 1351, - 1348, 1350, 1270, 1271, - 1271, 1272, 1349, 1348, - 1053, 1054, 1266, 1264, - 1266, 1281, 1265, 1264, - 1052, 1051, 845, 846, - 1264, 1051, 1052, 1053, - 1070, 1071, 1280, 1278, - 1280, 1340, 1279, 1278, - 1069, 1068, 864, 865, - 1278, 1068, 1069, 1070, - 1204, 1385, 1013, 1014, - 1385, 1386, 1012, 1013, - 1386, 1156, 1011, 1012, - 1156, 1386, 1306, 1307, - 1287, 1310, 1258, 1259, - 1159, 1387, 968, 969, - 1387, 1388, 967, 968, - 1388, 1202, 966, 967, - 1202, 1388, 1364, 1365, - 1174, 1389, 983, 984, - 1389, 1390, 982, 983, - 1390, 1172, 981, 982, - 1172, 1390, 1355, 1356, - 1346, 1349, 1272, 1273, - 1189, 1391, 953, 954, - 1391, 1392, 952, 953, - 1392, 1229, 951, 952, - 1229, 1392, 1380, 1381, - 1032, 1031, 1339, 1128, - 1377, 1384, 1331, 1332, - 1354, 1355, 1390, 1389, - 1389, 1174, 1173, 1354, - 1379, 1380, 1392, 1391, - 1391, 1189, 1188, 1379, - 1363, 1364, 1388, 1387, - 1387, 1159, 1158, 1363, - 1305, 1306, 1386, 1385, - 1385, 1204, 1203, 1305, - 1283, 1284, 1263, 1265, - 1265, 1281, 1282, 1283, - 1153, 1007, 1008, 1157, - 1153, 1157, 1310, 1287, - 1183, 992, 993, 1187, - 1183, 1187, 1349, 1346, - 1226, 947, 948, 1230, - 1226, 1230, 1384, 1377 ; - - coord = - 0.0046482, 0.00462095205244489, 0.00407603189326538, 0.00409608399880584, - 0.00453952766705162, 0.0040070090475829, 0.0044048814702919, - 0.00388641063094991, 0.00421859206571454, 0.00372085524254086, - 0.00398284352626219, 0.00353231845840176, 0.00370039978801297, - 0.00345100151930054, 0.0033745722455571, 0.00312949062586666, - 0.00300918092892289, 0.0027477555236361, 0.00260850971721743, - 0.00234159595802191, 0.00217725611406076, 0.0019194510427992, - 0.00172047617365099, 0.0014885849634875, 0.00124352522315152, - 0.00104309166457791, 0.000751995076376561, 0.00058252942972466, - 0.000251648474886737, 0.000111314511869974, -0.000251648474886738, - -0.000367082100202892, -0.000751995076376561, -0.000717281373545605, - -0.00124352522315152, -0.00103284355138002, -0.00172047617365099, - -0.00148469296320085, -0.00217725611406076, -0.00193936748103863, - -0.00260850971721743, -0.00236129342431774, -0.00300918092892289, - -0.00271754066362294, -0.0033745722455571, -0.00299000078985573, - -0.00370039978801297, -0.00327520947153589, -0.00398284352626219, - -0.00358770431720352, -0.00421859206571454, -0.00388763778247511, - -0.0044048814702919, -0.00386522212103788, -0.00453952766705162, - -0.00393250594203274, -0.00462095205244489, -0.00399675737664264, - -0.0046482, -0.0040211868822636, -0.00462095205244489, - -0.00400053701568372, -0.00453952766705162, -0.00393422400397954, - -0.0044048814702919, -0.00382513875319135, -0.00421859206571454, - -0.00367526250604614, -0.00398284352626219, -0.00351012766938204, - -0.00370039978801297, -0.00344154403436058, -0.0033745722455571, - -0.00312857728172623, -0.00300918092892289, -0.00275372617254158, - -0.00260850971721743, -0.00236998389941895, -0.00217725611406077, - -0.00196823752327961, -0.00172047617365099, -0.00155376817309422, - -0.00124352522315152, -0.00112036449039395, -0.000751995076376561, - -0.000666283763120764, -0.00025164847488674, -0.000205161385312401, - 0.000251648474886738, 0.000251895584310554, 0.000751995076376559, - 0.000687744522598796, 0.00124352522315152, 0.00110096680074783, - 0.00172047617365099, 0.00155279771323236, 0.00217725611406077, - 0.00198967985097513, 0.00260850971721742, 0.00239070829782132, - 0.00300918092892289, 0.0027422087667834, 0.0033745722455571, - 0.00306052094638451, 0.00370039978801297, 0.00335001220461178, - 0.00398284352626219, 0.00363783147416767, 0.00421859206571454, - 0.00391743340721045, 0.0044048814702919, 0.00391249449056135, - 0.00453952766705162, 0.00398998272978322, 0.00462095205244489, - 0.00405874922580881, 0.00351268345688309, 0.00356036800999454, - 0.00340248344973056, 0.00325021789342344, 0.00299743237376856, - 0.00250543646711756, 0.00207212123717189, 0.00165408630556432, - 0.00124847227428983, 0.000868656624325113, 0.000450558986649023, - -3.12372987361524e-05, -0.000648427946153769, -0.00125153112186977, - -0.00174428899384226, -0.00217753701016259, -0.00250008948354262, - -0.00260477307729237, -0.00281687368541658, -0.00323748906394864, - -0.00333720776013361, -0.00340183679558759, -0.00342560287490298, - -0.00341272645556894, -0.00335986595234626, -0.00327675141517851, - -0.00315657963725284, -0.00296681738884498, -0.00251222175922267, - -0.00211742825594564, -0.00174997891059649, -0.00140411358326207, - -0.00101616496847319, -0.000589261249419542, -0.000148768269899761, - 0.00027905641483638, 0.00141190112847561, 0.000898089141422635, - 0.00184299599180792, 0.00219930233307243, 0.00246637259032899, - 0.00272909043466346, 0.00300205747868672, 0.00335109848181125, - 0.00344686213509494, 0.00352727754424016, 0.00357148204258191, - 0.00296032645572109, 0.00304574499378719, 0.00284041653984194, - 0.00256707688837642, 0.00218003614409372, 0.00176610268798149, - 0.00135888540836859, 0.000990612209572105, 0.000753043625439511, - 0.000411263042732336, -5.52296304666714e-05, -0.000578036402789665, - -0.00111185767951962, -0.00162165338400967, -0.0021327922836002, - -0.00214530951520341, -0.00253374491180447, -0.00272328514274686, - -0.0028216334000301, -0.00285081956850381, -0.0028429170315396, - -0.00280474428376423, -0.00275566605367044, -0.00266313033525602, - -0.00251459211435872, -0.00220276064096218, -0.00184600582636978, - -0.00150686216230733, -0.00128942723842379, -0.000964050547302892, - -0.000533439701318114, -7.44516123605663e-05, 0.000389718258423119, - 0.00176797945989796, 0.00137785670822779, 0.00205187723552271, - 0.00218454046953667, 0.00236007922658319, 0.0025631873558177, - 0.00277016074030795, 0.00290433531150533, 0.00300922277480507, - 0.00306985147878086, 0.00308825292513332, 0.00255833972350536, - 0.00256483695911068, 0.00226976567156345, 0.001886231280887, - 0.00145576596703451, 0.00101607817545412, 0.000537903590115583, - -1.67867014949964e-05, -0.000489021384112366, -0.000964885609910039, - -0.00148684884726027, -0.00219420584334561, -0.00205163894823866, - -0.0022661333356823, -0.00229469161106474, -0.00228988921256697, - -0.00224359745097136, -0.00225703281562466, -0.00223564372077027, - -0.00195265318117012, -0.00156643259439704, -0.00108644801891186, - -0.000512049990687974, -2.02025238204737e-05, 0.000450095596816452, - 0.00183338055088341, 0.00195508221934068, 0.00210998871558046, - 0.00225640493418918, 0.00239218245190822, 0.0025160280825522, - 0.00260184480390922, 0.00264141314426823, 0.00260871947288348, - 0.00205351554562532, 0.00191400079549484, 0.00216995430939823, - 0.00221671341433719, 0.00218548756853582, 0.00206260336810552, - 0.00162263599039028, 0.00117642026148135, 0.000706476290604358, - 0.000295011457915058, -2.49819940102553e-05, -0.000345185791735723, - -0.000771716158280785, -0.00124623908923317, -0.00171260544647196, - -0.00176841956689336, -0.00176537139737866, -0.00177639691575977, - -0.00177517808425222, -0.00183680313968911, -0.00176282238516807, - -0.00137819158267433, -0.000903133141080939, -0.000418129476151307, - 5.30088313662892e-05, 0.00163322244781857, 0.00151598933606002, - 0.00177164530669951, 0.00178715159866612, 0.00163518472474756, - 0.00186430956092405, 0.00181601827048083, 0.00166087588982952, - 0.00135529891290929, 0.000917422961321646, 0.000315385861457785, - -6.62459404342431e-05, -0.000543644181907206, -0.00101676352663626, - -0.00145384209674609, -0.00127228849973825, -0.00133838584714825, - -0.00127385434516938, -0.00124406894226814, -0.000739499106828011, - -0.000307550187383761, 0.000126893327766586, 0.000517187861363425, - 0.000590293598792669, 0.0011596357525418, 0.00105545596087075, - 0.00128160032647749, 0.00145262312209642, -0.000310486265654549, - -0.000840994414391091, -0.000505894278875291, -0.00108832763782598, - -0.000215255546753667, 0.000171234898377518, 0.000667418977815461, - 0.00123965908851072, 0.000991182295797313, 0.00148859162550795, - 0.00163433295559185, 0.00155354036428812, 0.00148136942946439, - 0.00123740967520948, 0.000829692484190517, 0.000347056191001951, - -0.000159303257459002, -0.000718812476674997, 7.60404731574568e-05, - -0.000595955362581775, 0.000849504024569025, 0.000496275206582874, - 0.00129553275805959, 0.000411202518826268, 5.78605650058056e-05, - -0.0013765764214399, 0.000975505112095575, 0.00142213761321201, - 0.000920573623462505, 0.000765989805879269, -0.00226888870638919, - -0.00173622806764197, 0.000621630026285937, -0.00175695081412113, - 0.0051562, 0.00513285232717134, 0.00506302074882597, 0.00494733767055107, - 0.00373171744727736, 0.00337659291636868, 0.00318960946217628, - 0.00354786933549196, 0.00168642783245728, 0.00121562022327371, - 0.000733803769104711, 0.000245341874370376, -0.000245341874370382, - -0.000733803769104718, -0.00121562022327371, -0.00168642783245729, - -0.00337659291636868, -0.00373171744727736, -0.0035479144898937, - -0.00318947098880032, -0.00494733767055107, -0.00506302074882597, - -0.00513285232717134, -0.0051562, -0.00513285232717134, - -0.00506302074882597, -0.00494733767055107, -0.00373171744727736, - -0.00337659291636868, -0.00318961853647156, -0.00354784333959, - -0.00168642783245729, -0.00121562022327371, -0.000733803769104711, - -0.000245341874370379, 0.000245341874370382, 0.000733803769104714, - 0.00121562022327371, 0.00168642783245729, 0.00337659291636868, - 0.00373171744727736, 0.00354790212500586, 0.00318953840784119, - 0.00494733767055107, 0.00506302074882597, 0.00513285232717134, - 0.0038702130377912, 0.00405304696711276, 0.00415118069809409, - 0.00433767146598414, 0.004382389540426, 0.00458301334035452, - 0.00452355923310639, 0.00478685073621747, 0.00279920882212202, - 0.00299088943713101, 0.00239889523810523, 0.0025781, 0.00208711143393218, - 0.00214196289004033, -0.0027992189055046, -0.00299088943713101, - -0.00239889791071111, -0.0025781, -0.00208711232480081, - -0.00214196289004033, -0.00387022641006605, -0.00405304696711276, - -0.00415119068527603, -0.00433767146598413, -0.00438239158569441, - -0.00458301334035451, -0.00452356488978589, -0.00478685073621747, - -0.00387023178022729, -0.00405304696711276, -0.00415275845994316, - -0.00433767146598414, -0.00438239078861764, -0.00458301334035452, - -0.00452470766504234, -0.00478685073621747, -0.00279920061081575, - -0.00299088943713102, -0.00239889033828997, -0.0025781, - -0.00208710980066043, -0.00214196289004033, 0.00279921767992095, - 0.00299088943713101, 0.00239889622196188, 0.0025781, 0.0020871117618844, - 0.00214196289004032, 0.00387023812133524, 0.00405304696711276, - 0.00415119234033942, 0.00433767146598413, 0.0043823879666296, - 0.00458301334035451, 0.00452352771568397, 0.00478685073621747, - 0.0055698972402401, 0.00561345991052249, 0.00548818983888257, - 0.00536890533473892, 0.00521452643848308, 0.00503380832917469, - 0.004827196525795, 0.00459300367029085, 0.00405035421097332, - 0.00360927675199374, 0.00317924407507673, 0.00274223299081921, - 0.00228767926624147, 0.00181511778339348, 0.00133009371974828, - 0.000834391322603022, 0.000333168564266096, -0.000201488723495868, - -0.000862105954295589, -0.00145702997870712, -0.0019659786044512, - -0.00244159901404958, -0.00288910954060459, -0.00331080908230554, - -0.00370579375470523, -0.00407071309980195, -0.00440197228755659, - -0.00471077042160473, -0.00502656061714613, -0.00544353685479518, - -0.00550823302372065, -0.00558433967452655, -0.00563531221255973, - -0.00564141251535469, -0.00560529562811999, -0.00552591696768502, - -0.00540102893416674, -0.00523172719645496, -0.00503328263915228, - -0.00480907134897037, -0.00455365457685419, -0.00402346048002652, - -0.00358805577434554, -0.00316281968051351, -0.00272513646760334, - -0.00226952880753441, -0.00179547896528374, -0.00130572829108941, - -0.00080516271922191, -0.000301911512748568, 0.000228519753280125, - 0.000872378358959111, 0.00144733993980128, 0.00194149212393371, - 0.00240682233085091, 0.00285301565534714, 0.00327573881110347, - 0.00366896206636374, 0.00403433279558604, 0.00437258464035849, - 0.00469013718824812, 0.00501430149754942, 0.00544263449573363, - 0.00551526657511407, 0.00558091839170235, 0.00561565561496136, 0.01, - 0.00998756921218922, 0.00944524403776803, 0.00948270666393598, - 0.00995030775365401, 0.00940021061182605, 0.00988830826225129, - 0.00934047957881798, 0.00980172487848544, 0.00926063645628717, - 0.00969077286229078, 0.00915346386915778, 0.00955572805786141, - 0.00901621788750858, 0.00939692620785908, 0.00886191245523469, - 0.00921476211870408, 0.00868600044424159, 0.00900968867902419, - 0.00848521423668911, 0.00878221573370229, 0.00827430025436483, - 0.00853290881632156, 0.0080724742256791, 0.00826238774315995, - 0.00800284949080441, 0.00797132507222922, 0.00768785051292199, - 0.00766044443118978, 0.00733398501788081, 0.00733051871829826, - 0.00698599186693507, 0.00698236818086073, 0.00662543912916015, - 0.00661685837596859, 0.00625511890386326, 0.00623489801858733, - 0.00586981527272105, 0.0058374367223479, 0.00546941153109584, - 0.00542546263865759, 0.00505671957900615, 0.005, 0.00464712787687058, - 0.00456210657353163, 0.00426722143887571, 0.00411287103130611, - 0.00391564387811115, 0.00365341024366395, 0.00352640231663584, - 0.00318486650251684, 0.00307163142118059, 0.00270840468143005, - 0.00259937909849774, 0.00222520933956314, 0.00211172395423759, - 0.0017364817766693, 0.00161442209096479, 0.00124343704647485, - 0.00111285125017738, 0.000747300935864242, 0.000606431675758757, - 0.000249306917380728, 0.000107841893530626, -0.000249306917380729, - -0.000384846865829243, -0.000747300935864245, -0.000734601051564302, - -0.00124343704647485, -0.00106991814331788, -0.00173648177666931, - -0.00155461973713162, -0.00222520933956315, -0.00204550521808379, - -0.00270840468143005, -0.00254063681096274, -0.00318486650251685, - -0.00302503214321487, -0.00365341024366395, -0.00349784589689552, - -0.00411287103130612, -0.00395882576834171, -0.00456210657353163, - -0.00440880127438737, -0.005, -0.00485033302120949, -0.0054254626386576, - -0.00526923099938768, -0.0058374367223479, -0.00564443660258779, - -0.00623489801858734, -0.00594733702407484, -0.0066168583759686, - -0.0062723797151164, -0.00698236818086073, -0.00659729080955265, - -0.00733051871829827, -0.00692601720883673, -0.00766044443118978, - -0.00725663022398964, -0.00797132507222923, -0.00757773243528675, - -0.00826238774315995, -0.00788364232886825, -0.00853290881632156, - -0.00817115559698293, -0.00878221573370229, -0.0084599881216805, - -0.00900968867902419, -0.00873847411640034, -0.00921476211870408, - -0.00875535874619974, -0.00939692620785908, -0.00888185508466852, - -0.00955572805786141, -0.00901526246795454, -0.00969077286229078, - -0.00913482828469187, -0.00980172487848544, -0.00923746104149028, - -0.00988830826225129, -0.00932324156886254, -0.00995030775365401, - -0.00939607322213589, -0.00998756921218922, -0.00945464010213283, -0.01, - -0.00949531537111951, -0.00998756921218922, -0.00950407074222039, - -0.00995030775365401, -0.0094679854302646, -0.00988830826225129, - -0.00939771991770268, -0.00980172487848544, -0.00929853490770916, - -0.00969077286229078, -0.00917342702658832, -0.00955572805786141, - -0.00902591389735965, -0.00939692620785908, -0.00886812380488981, - -0.00921476211870408, -0.00869305070873705, -0.00900968867902419, - -0.00849620664490601, -0.00878221573370228, -0.00828751593512254, - -0.00853290881632155, -0.00808643054615849, -0.00826238774315995, - -0.0080136431961946, -0.00797132507222922, -0.00770204239377035, - -0.00766044443118978, -0.0073512237411214, -0.00733051871829826, - -0.00700203558923284, -0.00698236818086073, -0.00663630945734774, - -0.00661685837596859, -0.00626171972699641, -0.00623489801858733, - -0.00588163170246347, -0.0058374367223479, -0.0054966230318954, - -0.00542546263865759, -0.00511007735961255, -0.005, -0.00472104048464792, - -0.00456210657353162, -0.00431883818214552, -0.00411287103130611, - -0.00389684812170925, -0.00365341024366394, -0.00345564554935583, - -0.00318486650251684, -0.00299888482796377, -0.00270840468143005, - -0.00252935792831468, -0.00222520933956314, -0.00205275797086851, - -0.00173648177666929, -0.00156821582824216, -0.00124343704647485, - -0.00107607511661991, -0.000747300935864238, -0.000578567554981356, - -0.000249306917380723, -8.72031264860874e-05, 0.000249306917380737, - 0.000396652000941173, 0.000747300935864252, 0.000742393804784375, - 0.00124343704647485, 0.00107780327942318, 0.00173648177666931, - 0.00156244480678234, 0.00222520933956315, 0.00204934390776399, - 0.00270840468143006, 0.00253753498319946, 0.00318486650251685, - 0.00301388791622516, 0.00365341024366395, 0.00347731517604982, - 0.00411287103130612, 0.00392631152115132, 0.00456210657353164, - 0.0043625390762794, 0.005, 0.00478184807367546, 0.0054254626386576, - 0.00518007632771897, 0.0058374367223479, 0.0055456415993183, - 0.00623489801858734, 0.00590507652312195, 0.00661685837596859, - 0.00625707290757337, 0.00698236818086073, 0.00659774270202122, - 0.00733051871829827, 0.00693493485918846, 0.00766044443118978, - 0.00727581087971352, 0.00797132507222923, 0.0076021981500236, - 0.00826238774315995, 0.00790154492849452, 0.00853290881632156, - 0.00817848700639339, 0.00878221573370229, 0.0084586832605629, - 0.00900968867902419, 0.00874027573540444, 0.00921476211870408, - 0.00876611432317135, 0.00939692620785908, 0.00890686919229373, - 0.00955572805786141, 0.00905689069113711, 0.00969077286229078, - 0.00920268683132884, 0.00980172487848544, 0.00933104386720716, - 0.00988830826225129, 0.00943000041956755, 0.00995030775365401, - 0.00947214305477718, 0.00998756921218922, 0.00948831970377619, - 0.00593642273410315, 0.00603095901097939, 0.00581303012659722, - 0.00566523269847618, 0.00550291948139266, 0.00536198194430889, - 0.0052804016652143, 0.00381006745850138, 0.00426819134146484, - 0.00336362998450949, 0.00291179046970465, 0.00244151725339401, - 0.00195119627985905, 0.00145343509095181, 0.000953392197346425, - 0.000449417308973316, -5.01914552682411e-05, -0.000559138535785332, - -0.00229118165665501, -0.00181611419841639, -0.00276967422719131, - -0.00322272870389328, -0.00365240703072851, -0.00405668070622172, - -0.00442811381398539, -0.00475989663076, -0.00507376590314165, - -0.00540250662902828, -0.00580230494277935, -0.00612436187105126, - -0.00610158923748676, -0.00616412759018241, -0.0061547875190329, - -0.00610396814284923, -0.00601447728941163, -0.00588288716882052, - -0.0057019286671417, -0.00550382715469352, -0.00531903554839275, - -0.00519010903097171, -0.00376507801203652, -0.00421928474817791, - -0.00332445551230003, -0.00287545690313222, -0.00240548360621414, - -0.00191070465991926, -0.00140382082699611, -0.000892604887537683, - -0.000380786368415951, 0.000122967220836418, 0.000601163724353453, - 0.00223583466436654, 0.00178760620215444, 0.00269381703776187, - 0.0031457698752209, 0.00358103185247564, 0.00398101289685745, - 0.00435095310148456, 0.00469934505119893, 0.00503281911528267, - 0.00537488673833891, 0.00578539954518594, 0.00611811853106201, - 0.00611795201718867, 0.00612260322466383, 0.00609285443897519, - 0.00614681585657657, 0.00628632490990715, 0.00134386823772904, - 0.000979010733797797, -0.00471405625635333, -0.00522102517451427, - -0.00612931095168122, -0.00628791304782157, -0.00135634697601976, - -0.000987010346228677, 0.00478317229173102, 0.00533183491919231, - 0.00886283594937644, 0.00891944462126115, 0.00880814748297569, - 0.00873895496458802, 0.00863451587458586, 0.00849226041023089, - 0.00834311255925289, 0.00817581879558583, 0.00797932937814918, - 0.00775608553724979, 0.00749884222951053, 0.00701434243158302, - 0.00663047613073429, 0.00626863668664418, 0.00589816417740226, - 0.00551547111410695, 0.00510829488210119, 0.00469529833307622, - 0.00427399151527154, 0.0039586089253796, 0.00377588751140587, - 0.00345340973072686, 0.00301919343355847, 0.00252512403424887, - 0.00201446349064085, 0.00150199913081734, 0.000988342607629515, - 0.000477383483958783, -6.0549560511377e-05, -0.000707650609803217, - -0.00135272099893202, -0.00188925266258654, -0.00238969125839686, - -0.00287927381327602, -0.00335348082008455, -0.00381389669904754, - -0.00426404815605984, -0.00472973357905918, -0.00517203836640202, - -0.00548759244685144, -0.00564630237156453, -0.00589943260252584, - -0.00619714329332282, -0.00651196806353676, -0.00685268491580266, - -0.00719105842494193, -0.00750683586283087, -0.0078253114919229, - -0.00821262839278696, -0.0083644694528125, -0.0084918936817686, - -0.00859609090248737, -0.008688506246047, -0.00877535124602027, - -0.00885676208334041, -0.00893720702399459, -0.00901220971446511, - -0.00903667731239337, -0.00900790525885993, -0.00892628813920134, - -0.00881344799369523, -0.00867119417737269, -0.00851246227509404, - -0.00835499909692015, -0.00819224286354018, -0.00800208508513294, - -0.00778559274753357, -0.00753085178750551, -0.00705790963694587, - -0.00666927135333018, -0.00629126900299771, -0.00590865023235703, - -0.00552780817810449, -0.00515295310325244, -0.00479175329131716, - -0.00444499487815387, -0.00408262748637228, -0.00369583940991255, - -0.00327458780278323, -0.00282713726519352, -0.00236623259113904, - -0.00188913054336701, -0.00141012606806482, -0.000920905609162704, - -0.000424847426937465, 0.0001040432402432, 0.000734599374441949, - 0.00137529929721599, 0.00190264088891235, 0.00238960153839601, - 0.00286348690138258, 0.00331982269663585, 0.00375661032413259, - 0.00417986925095323, 0.00458509260065347, 0.00494806292232967, - 0.00524545881809893, 0.00556560047930774, 0.00589427675009652, - 0.00621096678246901, 0.0065349933182533, 0.00690523559735545, - 0.00725242850521571, 0.00754549341973203, 0.00784131626696276, - 0.00822663979781215, 0.00840707717216883, 0.00857612605511644, - 0.00873298549424347, 0.00888802698695973, 0.00900607936983568, - 0.00901809129809301, 0.00900920580027053, 0.00898209544092129, - 0.00492169742322155, 0.00541162699194769, 0.0044553526468317, - 0.00400565950546459, 0.00355337661501904, 0.00309371657661155, - 0.00260522502314638, 0.002073668884129, 0.00157055682042756, - 0.00106944938897287, 0.000579633775456522, 0.000103329308803627, - -0.000333419090519078, -0.000689841409053317, -0.00130992559154716, - -0.000920843878253432, -0.00173210490104489, -0.00214841963601681, - -0.00260812944863319, -0.00311149063931542, -0.00357680471136085, - -0.00401459680587761, -0.00442923825113051, -0.00481300201221786, - -0.00513655980328333, -0.00542942663054539, -0.00574733430975505, - -0.00607718703089001, -0.0064419879894951, -0.00680460557577737, - -0.00686064017704511, -0.00667682579259939, -0.00664229332139273, - -0.00666951307603534, -0.00672002673428465, -0.00669106794272682, - -0.00662346007718414, -0.00652734985057807, -0.00638606480626439, - -0.00617394772487924, -0.00597324930624008, -0.00579600546509783, - -0.00567154551295673, -0.00565494964925101, -0.00535149620377579, - -0.00580823069732259, -0.0048509718191798, -0.00437065662537345, - -0.00392951104500588, -0.00349355104277929, -0.00305136397099451, - -0.00255800340698047, -0.00201914859406115, -0.00149780843719895, - -0.000973615180043146, -0.000452137122557919, 4.11692748995495e-05, - 0.000418845836953084, 0.000619106901993811, 0.00136141917631584, - 0.000922445762638137, 0.0017384590801448, 0.00212752391211451, - 0.00253529487790773, 0.00298429128792239, 0.00343341490104026, - 0.00390539695038477, 0.00432182686157501, 0.0046891891986621, - 0.00503633711837386, 0.00536564085164452, 0.00570230352233461, - 0.00604694072608573, 0.00642209304863484, 0.0068082015843979, - 0.00684649960528152, 0.00672790666290696, 0.00667555270060109, - 0.00666565592494966, 0.00664861084208972, 0.00659154679899708, - 0.00650764858739177, 0.00640125031627121, 0.00627081647097302, - 0.00612558099138368, 0.00597867335101277, 0.00587509429693907, - 0.00583205467222654, 0.00585323119687396, 0.00591613664151968, - 0.00546775205612333, 0.00606344007831636, 0.00502560757379068, - 0.00828371528743281, 0.00832434307965605, 0.00823345260306078, - 0.00815892049387614, 0.00798572406241949, 0.0078419641701451, - 0.00769035012730184, 0.00749844264278353, 0.00726175210985542, - 0.00697783681436173, 0.00660835278291353, 0.00625455471424818, - 0.00589926786917631, 0.00554366265620741, 0.00517863571759509, - 0.00478406935539004, 0.00433790635169177, 0.00376453307026124, - 0.00354121561671371, 0.00303261688780157, 0.00250202833477394, - 0.00193336371650444, 0.00138090600710924, 0.000874642636753376, - 0.000372339433233042, -0.00013728895668678, -0.000686239629925242, - -0.00124472237604808, -0.001764941765059, -0.00226807415177594, - -0.0027517916785822, -0.00321294056275863, -0.00364436108588104, - -0.00410465739790837, -0.00467700425524421, -0.00524811620283471, - -0.00548697913392443, -0.00576511402920908, -0.00607487827191898, - -0.00645158632778107, -0.00680648993212009, -0.00712840659559611, - -0.007415761366759, -0.00768645177905541, -0.00786480349571335, - -0.00799261441155689, -0.0080674733201951, -0.00815034625387493, - -0.00823588664136943, -0.00832464045135172, -0.00844104955101482, - -0.00855512191392982, -0.00862587391321153, -0.00857312557643473, - -0.00847573668269513, -0.00834927592209625, -0.00819527976339167, - -0.00799667352814112, -0.00785394189782253, -0.00771521463845207, - -0.00753317665337617, -0.00730767007567542, -0.00704022214890179, - -0.00668235586315445, -0.00632655753632024, -0.00593810390253196, - -0.00554860893924305, -0.00516378758759772, -0.00479036957888968, - -0.00445610334864063, -0.004160134835844, -0.00387457833032923, - -0.00352980460178719, -0.00312632516101014, -0.00270066533851911, - -0.0022242653170821, -0.00173979165799414, -0.00126696091025222, - -0.000791199970543609, -0.000302739535776027, 0.000201257916139594, - 0.000741403664688763, 0.00129028606038094, 0.00179347418124316, - 0.00228034285341109, 0.0027456458225354, 0.00318555458264903, - 0.00360006411867314, 0.00401939047886066, 0.00443328543929401, - 0.00476724428676236, 0.00492279134637521, 0.00520581478803558, - 0.00551095401869654, 0.00579902322301242, 0.00656780974407257, - 0.00692905200217593, 0.00717105547912953, 0.00741086930333642, - 0.0077026031019834, 0.00792095588887945, 0.0081062110625119, - 0.0082905474880403, 0.00848174235956885, 0.00869114449866167, - 0.00859283945032149, 0.00855218431776937, 0.00850998237843095, - 0.00839364758127294, 0.000114791681376405, 0.000506852771276413, - 0.00121167036345572, 0.000714002643437469, 0.00183198385265968, - 0.00215394536596339, 0.00243950505633233, 0.002805735095809, - 0.0032325238140119, 0.00370881566755788, 0.00429346433937143, - 0.00539861123447348, 0.00506343235695948, 0.00571964074964635, - 0.00470373548413367, -0.00683866979799777, -0.00654337740822875, - -0.00734940373346084, -0.00724843674076896, -0.00741158481322076, - -0.007157302619294, -0.00713164048708392, -0.00720116666453905, - -0.00738923365818654, -0.00725180361666379, -0.0071593444695945, - -0.00706409349567497, -0.00663793603868418, -0.00695982786698302, - -0.00641336797899593, -0.00616270138784859, -0.00596140869863296, - -0.00607072282128204, -0.0064514658123641, -0.00555332243666304, - -0.00493555399064982, -0.00448566388009378, -0.00410253675961118, - -0.00370568605594571, -0.00326665460138197, -0.00273891741281697, - -0.00103462532962495, -0.00156348707407764, -0.000496391099555172, - -0.00210681681717242, -0.000560946234108082, -0.000480037617384237, - -0.00111253095777746, -0.000670113790239258, -0.00157549774624027, - -0.00211923240951365, -0.0024522060537959, -0.00288586653423269, - -0.00349956618795351, -0.00396600413539507, -0.00439819295527963, - -0.00482476217024423, -0.00554503739343969, -0.00530175752077101, - -0.00581534933986745, 0.00681692372075816, 0.00651349275499391, - 0.00734040994162906, 0.00722941394142457, 0.00743581613487322, - 0.00727516782960093, 0.00723077764378504, 0.00721794360699195, - 0.00719400599641896, 0.00710493646296674, 0.00700701688715262, - 0.0068784441702543, 0.00673450566327013, 0.00658418064161606, - 0.00643976805921718, 0.00633662335550679, 0.00634797895516778, - 0.0063384134295365, 0.00636788961637088, 0.00463217986846511, - 0.00422238430067383, 0.00378052481481349, 0.00331850282698919, - 0.00278313522282824, 0.00115521541653865, 0.00164527270330049, - 0.000676719350965403, 0.00216742249257074, 0.00669354868290377, - 0.00678109882900831, 0.00689763937757238, 0.00724550009273341, - 0.00746495799699828, 0.00765500528986263, 0.00784536252063907, - 0.00810398421962255, 0.00810182038111438, 0.00814505662862691, - 0.00782336712633542, 0.00778038404084828, 0.00776096498080374, - 0.007759483818441, 0.00778474014906345, 0.00763430720193238, - 0.00752755528746502, 0.007364834746784, 0.00719733218813546, - 0.00702732875126608, 0.00685954619058272, 0.00669924074741482, - 0.00704696181285431, 0.00680884154271817, 0.00652275480310593, - 0.00619498697991193, 0.00585727109466454, 0.00551708821161483, - 0.00519257149144897, 0.00489657074675439, 0.00452267551240058, - 0.0040840619049144, 0.00359073743329321, 0.00308566026290175, - 0.00307216963820249, 0.00251617804512724, 0.00028103795786995, - -0.000157587095907805, -0.000652836694456146, -0.0011685133670749, - -0.00168076345205242, -0.00218044410710796, -0.00264913895639332, - -0.00306535649761259, -0.0034352762370924, -0.00384700680391194, - -0.00427674382978407, -0.00503255878763834, -0.00462603166323051, - -0.00530734142107096, 0.00260944911559554, 0.00268564774517327, - 0.00300105686949058, 0.00342817945480919, 0.00389111944199434, - 0.00433768767406075, 0.00483192578726246, 0.00468465132131571, - -0.0067544976711372, -0.00701357509447556, -0.00723482324945114, - -0.00741165717988332, -0.0075276720907979, -0.00754493162036441, - -0.00761102012076889, -0.00769842090767247, -0.0078075936698463, - -0.00794864024659604, -0.00816424686371793, -0.00832350474226944, - -0.00820120878677293, -0.00806730739669379, -0.00792856960596815, - -0.0077670426186102, 0.00663488444460282, 0.00638966392400477, - 0.006104570160437, 0.00578889498810377, 0.00545695592927112, - 0.00512856167704896, -0.00708865162696667, -0.00686866788642625, - -0.00660630826977041, -0.00630900349812399, -0.00599673522207644, - -0.00559894695061915, -0.00518614863007998, -0.00478586739191517, - -0.00440719514001853, -0.00407066388107663, -0.003857195136712, - -0.0037211095747947, -0.00343155525734288, -0.00305530991218904, - -0.00264277617761948, -0.000220217977942435, 0.000251229511376477, - 0.000742720560302108, 0.00124141335173991, 0.0017333673808186, - 0.00221365373404171, 0.00266408761710392, 0.00306691726750473, - 0.00343720265481014, 0.003867589532517, 0.00441913602914502, - 0.00480992815611524, 0.00513448169019326, 0.00538575104580219, - -0.00486719367643925, -0.00455304914900993, -0.00430861690283295, - -0.00396388230744252, -0.00356276717523562, -0.00318223971945328, - -0.00259763272948933, -0.00294912646275631, -0.00161906780554394, - -0.00212354473643754, -0.0011019192782129, -0.000591259504917651, - -0.000117563574402583, 0.000223442384914593, -0.00640249918706734, - -0.00662033669590128, -0.00682032784092656, -0.00700531012704566, - -0.00716547059985541, -0.00785799896739663, -0.0076636147409947, - -0.00755466728658272, -0.00748881040199017, -0.00668053285570665, - -0.00645397047217371, -0.00620491658379964, -0.00595186533307628, - -0.00574662315313054, -0.00345458672601186, -0.00302649026770931, - -0.00270715749970823, 0.00507959486287839, 0.00482742596904229, - 0.00447640794757035, 0.00406457445687233, 0.00361671978354927, - 0.00321423335879571, 0.00262777937244896, 0.00296981756990735, - -0.000173893027009592, 0.000264786610967113, 0.000724357984609519, - 0.00120350845971786, 0.00169262277280351, 0.00217245211680274, - 0.00630146149558873, 0.00602326114719204, -0.0063420696031114, - -0.00608212857183417, -0.00606657505879928, -0.00622417937815761, - -0.00018587761549229, 0.000217899499444829, - 0, 0.000502558821438166, 0.000464650097346194, -1.74044847812479e-05, - 0.000999225600188882, 0.00093631478263419, 0.00148417737237806, - 0.00139960048525018, 0.00195172852187242, 0.00184732546526007, - 0.00239639743893023, 0.00227593949195188, 0.00281297078706366, - 0.00262827032999293, 0.00319656462464248, 0.00280116405407042, - 0.00354268166464428, 0.0030851761050775, 0.00384726400123286, - 0.0033673218985025, 0.004106740684994, 0.00362033941260323, - 0.00431806958905241, 0.00383628901110562, 0.00447877307522785, - 0.00399483736855038, 0.00458696704207752, 0.00409265278891929, - 0.00464138301426279, 0.00413918409264688, 0.00464138301426279, - 0.00416707425753946, 0.00458696704207752, 0.00426623916548985, - 0.00447877307522785, 0.00406353715152013, 0.00431806958905241, - 0.00387035228520885, 0.004106740684994, 0.00366683059617342, - 0.00384726400123286, 0.00345166666939967, 0.00354268166464428, - 0.00322012056202406, 0.00319656462464248, 0.0028978291174788, - 0.00281297078706366, 0.00250775637339017, 0.00239639743893023, - 0.00212368247865451, 0.00195172852187242, 0.00185542984422131, - 0.00148417737237806, 0.00148718608737937, 0.000999225600188883, - 0.00102160314985417, 0.000502558821438165, 0.00053718438650141, - 5.69240325179673e-19, 4.35440430409568e-05, -0.000502558821438166, - -0.000447123898698871, -0.000999225600188882, -0.000932293910231315, - -0.00148417737237806, -0.0014084327631366, -0.00195172852187242, - -0.00186866159040188, -0.00239639743893023, -0.00229823718828385, - -0.00281297078706366, -0.00264568208568292, -0.00319656462464248, - -0.00282825529459439, -0.00354268166464428, -0.00312117064666021, - -0.00384726400123286, -0.0033990107533752, -0.004106740684994, - -0.00364951438942734, -0.00431806958905241, -0.00384371178518349, - -0.00447877307522785, -0.00398187481900663, -0.00458696704207752, - -0.00407224182549315, -0.00464138301426279, -0.0041295678398595, - -0.00464138301426279, -0.00414956130530062, -0.00458696704207752, - -0.00411409074566148, -0.00447877307522785, -0.00396674174913772, - -0.00431806958905241, -0.00382923271367464, -0.004106740684994, - -0.00366463989123364, -0.00384726400123286, -0.00345056494444013, - -0.00354268166464428, -0.00316435378328615, -0.00319656462464248, - -0.00282168975799693, -0.00281297078706366, -0.00245456531453817, - -0.00239639743893023, -0.00207269835181482, -0.00195172852187242, - -0.00182810419203016, -0.00148417737237806, -0.00145870136867703, - -0.00099922560018888, -0.00099280235238334, -0.000502558821438165, - -0.000506185961967886, 0.000885185961109539, 0.000435291271675, - 0.0013250385874411, 0.00176833096154895, 0.00228364212842763, - 0.00263658618632404, 0.00291873177199936, 0.00317089367628273, - 0.00339575189987137, 0.00357424276213955, 0.00363037625457652, - 0.00365858912450918, 0.0036830059193057, 0.00342986006129098, - 0.00323364205000082, 0.00307392681054521, 0.00298316777374243, - 0.00267215752138904, 0.00222807285489457, 0.00169199051200342, - 0.00109217895109782, 0.000572888151795082, 7.82419455627023e-05, - -0.000404927074822199, -0.000880583815271861, -0.00135211898222368, - -0.00182045034710496, -0.00235294133486994, -0.00271605905378966, - -0.00299244473951128, -0.00323563476690529, -0.00343079379537109, - -0.00351737445684221, -0.00358415254878288, -0.00364743985664122, - -0.00370089087858371, -0.00335513723361521, -0.00343717130236351, - -0.00324713725637086, -0.00310424398775355, -0.00284622942998446, - -0.00250534501547551, -0.00210658451522165, -0.00160985738539571, - -0.00101048337046981, -0.000503509321650491, -2.55281885839391e-05, - 0.00123838853020203, 0.00083739534673295, 0.00161457759801446, - 0.00194754896065636, 0.00223961384582303, 0.00250397989680864, - 0.00276101233679318, 0.00301717026212597, 0.00325899208923425, - 0.00319408101899906, 0.00317432992584285, 0.00310919113442417, - 0.00294479601097546, 0.00277621163989668, 0.00264417527870284, - 0.00207887178107497, 0.00155295523115122, 0.00104574249935173, - 0.000561106240878401, 8.51799089153146e-05, -0.000378688018381582, - -0.000834723214369893, -0.00128246719129566, -0.00171122820229146, - -0.00210047246380636, -0.00238068727129729, -0.00262880528258876, - -0.00288326201463027, -0.00312872281014737, -0.00308764306954959, - -0.00311861653856128, -0.00317762654672702, -0.00327012260841716, - -0.00287059157663175, -0.00288139964458775, -0.00285824426134373, - -0.00260912990475659, -0.00226875507392077, -0.0018629328107172, - -0.00140931143285544, -0.000929056066454784, -0.000465080219228503, - -1.77071370910263e-05, 0.000417824777979686, 0.00147262887114586, - 0.00117084599736393, 0.00163246301805917, 0.00186527235853379, - 0.00210322325648119, 0.00236775490703081, 0.00269503560881585, - 0.00273182948065115, 0.00263060631536013, 0.00247998015594459, - 0.00230256109795376, 0.000941223063915916, 0.00134478710732925, - 0.000509240017976225, 6.78057215968663e-05, -0.000374232129645534, - -0.00163327599612724, -0.00124368939578084, -0.00193527646630913, - -0.00206961635255766, -0.00226651707437096, -0.00256644792496142, - -0.00262361916443049, -0.00269239499416824, -0.00278260768555677, - -0.00250156496598154, -0.0021123169188033, -0.00168687713750705, - -0.00125378635044856, -0.000822093920162971, -0.000404954448065891, - 5.56411733700572e-06, 0.000410297194516775, 0.00079727551187971, - -0.000330409450509426, -0.000721499004925483, 3.82230580480074e-05, - 0.000401331814317522, 0.000774009783501878, 0.00120573430949618, - 0.00148437996804759, 0.00169247541773183, 0.00191382370175457, - 0.00219380269291907, 0.00237399937551267, 0.00221279911203083, - 0.00204492385562129, 0.00186619469979119, 0.0016546911643526, - 0.000466252099399665, 0.000862956217407976, 4.13757558507311e-05, - -0.000379924042226542, -0.00169556981977158, -0.00126579658534937, - -0.00181934628290197, -0.00199567041722852, -0.00211825134284754, - -0.00220344078596797, -0.0015544913020384, -0.00199536579094964, - -0.00113519592968428, 9.68961512086414e-05, -0.000225655890431254, - 0.000386812156379988, 0.000679499932788694, 0.000957624304630156, - 0.00113490358416738, 0.00126054462033061, 0.00139560717985151, - 0.00185245251021216, 0.00162458358691903, 0.00144973490713632, - 0.00130576277292697, 0.000468544802971088, 0.000909389935376793, - 1.07527339099826e-05, -0.00134098708288959, -0.00150211163942567, - -0.00165625558170103, -0.00173301945733565, -0.00229216598380455, - -0.00180483745052147, -0.0014531244245734, -0.00190431940978744, - -0.00100887534532, -0.000600089331706644, 0.00115663441385333, - 0.000999468364121603, -0.00104590851818274, -0.000768725230223134, - -0.00131637386138604, -0.00127104311183256, -0.00134536823630373, - -4.90595673678239e-05, -0.000426435471993473, 0.000223700676653192, - 0.00039534545046887, 0.000585340819319125, 0.000782030941912204, - 0.000803516314400308, 0.000795785251881072, 0.000820052471607079, - 0.000649577988690321, 0.000493185184380983, -0.000697628956837287, - -0.000160723128487711, 0.000296610957324131, -0.000161679993434827, - 0.000481967476859106, 0.000428296425755389, 0.000182641849917298, - -0.000379337385253518, -0.00237441797620539, -0.00243796438951165, - -0.00286741596824356, -0.000870771304932472, -0.00081253246715936, - -0.000811511669685766, -0.0037507176422029, 0.0011711686992214, 0, - 0.000490127970485035, 0.000975817266171154, 0.00145266940958578, - 0.00355818539900407, 0.00389679595528543, 0.00371342640733334, - 0.00337243855357441, 0.00487261322145657, 0.00501085480858985, - 0.00510371731862647, 0.00515035977429542, 0.00515035977429542, - 0.00510371731862646, 0.00501085480858984, 0.00487261322145657, - 0.00389679595528543, 0.00355818539900406, 0.00337274601568656, - 0.00371323810734861, 0.00145266940958578, 0.000975817266171145, - 0.000490127970485024, -6.31452382576358e-19, -0.00049012797048503, - -0.000975817266171148, -0.00145266940958578, -0.00355818539900407, - -0.00389679595528543, -0.00371342003980357, -0.00337249029124182, - -0.00487261322145657, -0.00501085480858985, -0.00510371731862647, - -0.00515035977429542, -0.00515035977429542, -0.00510371731862646, - -0.00501085480858984, -0.00487261322145657, -0.00389679595528543, - -0.00355818539900406, -0.00337277188343572, -0.00371316528760451, - -0.00145266940958578, -0.000975817266171147, -0.000490127970485026, - -0.00299741676039673, -0.00318735136475068, -0.00259353205176107, - -0.00278765218296455, -0.00218041507713009, -0.00236270759133087, - -0.00186009691921923, -0.00191636595387578, -0.00401619493687064, - -0.00420011652396194, -0.00426674247352603, -0.00446540018699332, - -0.0044250188523418, -0.00469024449444697, -0.00401622308706488, - -0.00420011652396194, -0.00426674538210899, -0.00446540018699332, - -0.00442501982186945, -0.00469024449444697, -0.00299734845501072, - -0.00318735136475069, -0.00259350752005926, -0.00278765218296455, - -0.0021804095282655, -0.00236270759133087, -0.00186008280440857, - -0.00191636595387578, 0.00299739360362345, 0.00318735136475068, - 0.00259234823041621, 0.00278765218296455, 0.00218041206226374, - 0.00236270759133087, 0.00186031846283919, 0.00191636595387578, - 0.00401620244999005, 0.00420011652396194, 0.0042667460888509, - 0.00446540018699332, 0.00442502005745009, 0.00469024449444697, - 0.00401622381429023, 0.00420011652396194, 0.00426674644889503, - 0.00446540018699332, 0.0044250201774648, 0.00469024449444697, - 0.00299733450821824, 0.00318735136475069, 0.00259354220200182, - 0.00278765218296455, 0.00218040708909645, 0.00236270759133088, - 0.00186004184702573, 0.00191636595387578, -0.00058778915594232, - -8.46147513249116e-05, -0.00108275469648999, -0.00157045177257773, - -0.00205324029321788, -0.00252591081324198, -0.00302518881512579, - -0.00364829426476949, -0.00401998808834671, -0.00432378816918975, - -0.00461850554324533, -0.00488302506999189, -0.00510855420939097, - -0.00528864639032685, -0.00542920627462249, -0.00553486858508437, - -0.00561151335635171, -0.005679707270174, -0.00580144261745118, - -0.00554032920839411, -0.00532857551134604, -0.00510582034580995, - -0.00485132845815925, -0.00456267255354731, -0.00424289540992742, - -0.00388939778741986, -0.00350381858252498, -0.00309809550955354, - -0.0026618805744275, -0.00214418658476298, -0.0015003636499705, - -0.000957057062052097, -0.00043635942103554, 7.89030018394665e-05, - 0.000588161465222184, 0.00109003841137489, 0.0015839350535311, - 0.00206638456903794, 0.00253505478163222, 0.00302586974210371, - 0.00364187467577649, 0.00399910029897008, 0.00431733251231859, - 0.00460797103862381, 0.00487503821103231, 0.00510420043210595, - 0.00528850795437149, 0.00543078748504152, 0.0055358447194686, - 0.00560654141944269, 0.00566065622572111, 0.00574972099954004, - 0.00548374525197232, 0.0052668390584924, 0.00504402613364648, - 0.0048007810037349, 0.00452383178528118, 0.0042095515095415, - 0.00386032161313225, 0.003484121243338, 0.00308649347869129, - 0.00265426452644282, 0.00213342764199075, 0.00148754933884255, - 0.000944437852481708, 0.00042518505285171, 0, 0.000498458856606972, - 0.000428376248204831, -5.09655707703257e-05, 0.000995678465958167, - 0.000912922658287404, 0.00149042266176174, 0.00139837591767099, - 0.00198146143199398, 0.00187961186397561, 0.00246757397690294, - 0.0023551409102671, 0.00294755174410904, 0.00282413371447929, - 0.00342020143325669, 0.00329367632693777, 0.00388434796274695, - 0.00375948289601879, 0.00433883739117558, 0.00422148704947401, - 0.00478253978621318, 0.00466946863550469, 0.00521435203379498, - 0.00511408462276513, 0.00563320058063622, 0.00547568075290629, - 0.00603804410325477, 0.00568174554672276, 0.00642787609686539, - 0.00603908246915187, 0.0068017273777092, 0.00640402247835305, - 0.00715866849259718, 0.00676592844199766, 0.00749781202967734, - 0.00711075221803458, 0.0078183148246803, 0.00743295968413762, - 0.00811938005715857, 0.00773275293961147, 0.00840025923150771, - 0.00801344396618944, 0.00866025403784439, 0.00828658753822464, - 0.00889871808811469, 0.00855026306860225, 0.00911505852311673, - 0.0087799927546254, 0.00930873748644204, 0.00890665277300101, - 0.00947927346167132, 0.00902055700770935, 0.00962624246950012, - 0.0091245167073418, 0.00974927912181824, 0.00922317093162679, - 0.00984807753012208, 0.00931814048209665, 0.00992239206600172, - 0.00940198619151086, 0.0099720379718118, 0.00946424155646136, - 0.00999689182000816, 0.00950362825300645, 0.00999689182000816, - 0.00954507271830624, 0.0099720379718118, 0.00966715027086607, - 0.00992239206600172, 0.00949946711949853, 0.00984807753012208, - 0.00937417580870028, 0.00974927912181824, 0.00925500951706838, - 0.00962624246950012, 0.00912578654502568, 0.00947927346167132, - 0.00897721366665003, 0.00930873748644204, 0.00880328269064069, - 0.00911505852311673, 0.00860395461404407, 0.00889871808811469, - 0.00838694965226024, 0.00866025403784439, 0.0081692613416383, - 0.00840025923150771, 0.00797170352102288, 0.00811938005715856, - 0.00778134376473641, 0.00781831482468029, 0.00750785326296347, - 0.00749781202967734, 0.00717139456870904, 0.00715866849259718, - 0.00681608995423051, 0.00680172737770919, 0.00644278632555455, - 0.00642787609686539, 0.00606226867169239, 0.00603804410325477, - 0.00567046519396036, 0.00563320058063622, 0.00526478968082623, - 0.00521435203379498, 0.00485505084396913, 0.00478253978621318, - 0.0044546717926662, 0.00433883739117558, 0.00420875305038478, - 0.00388434796274695, 0.00383798001457821, 0.00342020143325668, - 0.00336031366352747, 0.00294755174410904, 0.00288073276645309, - 0.00246757397690293, 0.00239007760256097, 0.00198146143199398, - 0.00189884600934728, 0.00149042266176174, 0.00140947046758727, - 0.000995678465958167, 0.000923445000569719, 0.00049845885660697, - 0.00044338488864732, 1.22464679914735e-18, -2.87955225340017e-05, - -0.000498458856606972, -0.000496213891232614, -0.000995678465958169, - -0.000960545082837268, -0.00149042266176175, -0.00142503150611169, - -0.00198146143199398, -0.00189068205570515, -0.00246757397690294, - -0.00235610173896486, -0.00294755174410905, -0.00282131370915113, - -0.00342020143325669, -0.00328821013663234, -0.00388434796274695, - -0.00375361714862192, -0.00433883739117558, -0.00421487486134829, - -0.00478253978621319, -0.00466274646273966, -0.00521435203379499, - -0.00510784574713654, -0.00563320058063622, -0.00546865907567095, - -0.00603804410325477, -0.0056694184725166, -0.0064278760968654, - -0.00601762318693161, -0.0068017273777092, -0.00637209210911529, - -0.00715866849259718, -0.00671989991087413, -0.00749781202967734, - -0.00705307023103842, -0.0078183148246803, -0.00737257056713172, - -0.00811938005715857, -0.00767770022548067, -0.00840025923150771, - -0.00796657465235033, -0.00866025403784439, -0.00823685943956598, - -0.00889871808811469, -0.0084764679421785, -0.00911505852311673, - -0.00867517631364287, -0.00930873748644205, -0.00884027212007832, - -0.00947927346167132, -0.00897760710580408, -0.00962624246950012, - -0.00909739905954577, -0.00974927912181824, -0.0092145349606584, - -0.00984807753012208, -0.00932066720053482, -0.00992239206600172, - -0.00940524311982244, -0.0099720379718118, -0.0094641186034198, - -0.00999689182000816, -0.00950456042540368, -0.00999689182000816, - -0.00955130807049399, -0.0099720379718118, -0.00967108227073983, - -0.00992239206600172, -0.00950287854796097, -0.00984807753012208, - -0.0093768292185217, -0.00974927912181824, -0.00925997300843707, - -0.00962624246950012, -0.00913273228145151, -0.00947927346167132, - -0.00899134487288516, -0.00930873748644204, -0.00883079033519634, - -0.00911505852311673, -0.00864809966414237, -0.00889871808811468, - -0.00844892307205575, -0.00866025403784439, -0.00823837887600004, - -0.00840025923150771, -0.0080102140189589, -0.00811938005715856, - -0.00773491057068089, -0.00781831482468029, -0.00742939804277761, - -0.00749781202967734, -0.00709799971013371, -0.00715866849259718, - -0.0067436611788831, -0.00680172737770919, -0.00637842527454076, - -0.00642787609686539, -0.00601260308958453, -0.00603804410325477, - -0.00563718812204181, -0.00563320058063622, -0.00523713383875198, - -0.00521435203379498, -0.00482764564154728, -0.00478253978621318, - -0.00442445762571325, -0.00433883739117558, -0.00418874008154774, - -0.00388434796274695, -0.00381232371416748, -0.00342020143325669, - -0.00333139534259332, -0.00294755174410904, -0.00285699479654036, - -0.00246757397690293, -0.00237953947343612, -0.00198146143199398, - -0.00191229448817012, -0.00149042266176174, -0.0014567755119842, - -0.000995678465958164, -0.000997137358556917, -0.000498458856606967, - -0.000528228990111924, -0.00119522374206993, -0.000691656518069938, - -0.00169066907173483, -0.00217698054746461, -0.00266303071083656, - -0.00316287790134588, -0.00371950360126467, -0.00479483160051064, - -0.00453024417861592, -0.00506450331825025, -0.00532697480020022, - -0.00555795101838481, -0.00573230402456986, -0.00586958682899663, - -0.0059806755582416, -0.00607441495951446, -0.00618512461640559, - -0.00637361206999202, -0.00578014679264791, -0.0060448427275993, - -0.00553551731037662, -0.00525465202974658, -0.00494431417373472, - -0.00460707680477445, -0.00424057272429293, -0.00384199418050151, - -0.00343459266030363, -0.00304279652514013, -0.00268377670405627, - -0.000898308629887371, -0.00143586576876241, -0.000364351991158844, - 0.000168111045074323, 0.000694212630446044, 0.00121427316535357, - 0.00172144530761461, 0.00220968642440996, 0.00268513145651277, - 0.00316836213516977, 0.0036961540180432, 0.00476705951000123, - 0.00452144418332168, 0.00504238353214022, 0.00530891316411729, - 0.00554765300471395, 0.00573052437558902, 0.00587325663150165, - 0.00598584022958223, 0.00607472836083624, 0.00615523448467755, - 0.0062852461809642, 0.00564801270236062, 0.00591410745210901, - 0.00540571985694288, 0.00515276768465953, 0.00487224354782761, - 0.00454108263752492, 0.00418169764024215, 0.00380241202074832, - 0.00341142099630756, 0.0030287604186006, 0.0026714317009315, - 0.00087009025378312, 0.00140872900515757, 0.000341493515849429, - -0.000178587941136756, 0.00195773346954683, 0.00245639706591542, - 0.00622950939518656, 0.00661211729464654, 0.00431511939670692, - 0.00423279212502858, -0.00197853918196648, -0.00246806136473089, - -0.00634934534180577, -0.00671447965995185, -0.00434608457019192, - -0.00428919380341589, 0.000830105275652881, 0.000352036101234655, - 0.00131133414425019, 0.00178645915187202, 0.00224707859507178, - 0.00269932465028718, 0.00316391537038503, 0.00363473731155327, - 0.00409778169609016, 0.00458413557607351, 0.00517132455031047, - 0.00563719876181635, 0.00603175197480543, 0.00639602972703866, - 0.00674370805557586, 0.00706730254239974, 0.00736137944010405, - 0.00764229286198372, 0.00793534294681572, 0.00826257647925223, - 0.00852081147592569, 0.00851986519389945, 0.008563590371201, - 0.00862418954124163, 0.00869456178750726, 0.00879518902081849, - 0.00889392415552391, 0.00896696701113369, 0.00901900950325933, - 0.00908592611972452, 0.00890404073005104, 0.00876852432548447, - 0.0086368461032823, 0.00848805285145129, 0.00831531192491351, - 0.00810820565247505, 0.0078907638277398, 0.00767223895844496, - 0.0075621659221806, 0.00753193692219113, 0.00725230107965638, - 0.00690035639732043, 0.00650480806073488, 0.00610286688676744, - 0.00571475394254045, 0.00532231920278534, 0.00491462260821501, - 0.00447615049199202, 0.00395523555809454, 0.00332123754683164, - 0.00279953178431327, 0.00230354410462204, 0.00180795392270441, - 0.00131862576796191, 0.000838155952009481, 0.000373894362810067, - -6.88030350721806e-05, -0.000498586390948931, -0.00092315655069116, - -0.00135537140752652, -0.00179440562365652, -0.00223812275914695, - -0.00268591267320098, -0.00315169402317711, -0.00362156207504371, - -0.00408318804579938, -0.00456636692022914, -0.00515044601815039, - -0.00559663573237185, -0.00596446765166612, -0.00629955029355097, - -0.00662689576778207, -0.0069459052347008, -0.00725487680953532, - -0.00755466510618609, -0.00783898787428945, -0.00807089394094034, - -0.00825294717476594, -0.00838457741175824, -0.00848410917252113, - -0.00857927276206664, -0.00868804642011665, -0.00880736314974561, - -0.0089047053305584, -0.00896761525818719, -0.00901753050672392, - -0.00908783119666399, -0.00890467356479407, -0.00877451671556577, - -0.00865046635416598, -0.00851673607190659, -0.00836663575183925, - -0.00818980145377382, -0.00800577097714708, -0.00782985826327444, - -0.00765163721707559, -0.0073867118733217, -0.00706917238686889, - -0.00672808036557425, -0.0063590117746522, -0.00595557194523821, - -0.00560160751433267, -0.00525828973833548, -0.00486361436185995, - -0.00442011512598315, -0.00389925235966759, -0.00324997746872989, - -0.0027284733372771, -0.00225772108499664, -0.00180804056263148, - -0.00141590514113931, -0.00100793037978057, -0.000567393066871507, - -0.0001116934661427, -0.00487390796019849, -0.00482769617113051, - -0.00503399217118353, -0.0052606428739256, -0.00552349144827997, - -0.00579244565579016, -0.00603723319165855, -0.00620453033295633, - -0.00632956343842725, -0.00643925281019054, -0.00653464902924202, - -0.00665207407865808, -0.00680243701073848, -0.00703257231108237, - -0.00713002722949272, -0.00738137331942654, -0.00683556837616589, - -0.00649783367044529, -0.0062358411130258, -0.00598330116192689, - -0.00567233724147074, -0.00533717741546572, -0.00498563852884581, - -0.00460234129860792, -0.004173102903748, -0.00377536001593033, - -0.00340213631184519, -0.00308443766011703, -0.00287591710447787, - -0.00236450827316933, -0.00283012776823649, -0.0018831318440189, - -0.00137630015393592, -0.000858484402359637, -0.000294671090519234, - 0.000263893287502531, 0.000811377548577518, 0.00134963342692238, - 0.00188416105477794, 0.00237545315636139, 0.00282801515095081, - 0.00329266147981778, 0.00374149021909552, 0.00416843351236365, - 0.00475549669917595, 0.00456995493541635, 0.00485510220088683, - 0.00500446386980672, 0.0052207852602671, 0.00548168154033253, - 0.00574842491844559, 0.00601831266876877, 0.00619766897361621, - 0.00633538516452767, 0.00645030669163746, 0.00654017105485615, - 0.00660826320930237, 0.00660933252705825, 0.00692136727000328, - 0.00700114439340357, 0.00729216616566175, 0.00662829076295829, - 0.00628950600677603, 0.00601674818025662, 0.00577473051535187, - 0.00552897441348045, 0.00524423128581243, 0.00487706751727347, - 0.00450904835147453, 0.00412953238335463, 0.00374974725002832, - 0.00338953252695171, 0.0030774346260122, 0.00287336178571259, - 0.00236380571133032, 0.00283795166594513, 0.00185576488410991, - 0.00132513761666923, 0.000788524423949886, 0.000252623634237655, - -0.000277771594778675, -0.000801962410082873, -0.0013158234650206, - -0.00181334240475992, -0.00229796412278456, -0.00277299909250596, - -0.00325832258475202, -0.00376937654221501, -0.00429510010862342, - -0.00482255530689521, -0.00533503599267971, -0.00545581530264578, - -0.00532152434309433, 0.00123945278144159, 0.000746798792918375, - 0.00171291567171809, 0.0021457244806363, 0.00255600099198419, - 0.00302260504288929, 0.00349159236242842, 0.00395197699521609, - 0.00440542181113169, 0.00487369124115458, 0.00530299591970387, - 0.00568754553172172, 0.00605576146227551, 0.0064016968922288, - 0.00671860663537297, 0.00698693179378966, 0.00725850417491896, - 0.00758605841567345, 0.0081123617665598, 0.00809839392228324, - 0.00811704056308441, 0.00814998353826291, 0.00827104187828532, - 0.0083963892145389, 0.00848125695954464, 0.00851183861610311, - 0.00849813233829305, 0.00839390265434253, 0.00827853689279803, - 0.0081516629824681, 0.00801313466370686, 0.00785267033938377, - 0.00764339245031744, 0.00739223882710249, 0.00706040707600913, - 0.00712772320660368, 0.00668379540315414, 0.00623883158421346, - 0.00577428042641694, 0.00537041637938697, 0.00499540755452269, - 0.00459194317509696, 0.00416239841217942, 0.00369365387668828, - 0.00317808729715961, 0.002693074820535, 0.00220199987438404, - 0.00170505986034642, 0.0012095396476244, 0.000725025202640855, - 0.000269950230823394, -0.000137744896243772, -0.000504959831670289, - -0.000871158776019749, -0.00126669601477339, -0.00167906778550401, - -0.00209201844711651, -0.00252755946834136, -0.00300367593260492, - -0.00347226387575091, -0.0039310206232555, -0.00437850007266982, - -0.00483611261126259, -0.00524131293780609, -0.00558983672652783, - -0.00589709453042157, -0.00621497714674874, -0.00653461590120775, - -0.00685198233376341, -0.00717774000029452, -0.00747704401299372, - -0.00771709518083246, -0.00784683886781251, -0.007937904862154, - -0.00800097027693839, -0.00804061903670002, -0.00816522281309008, - -0.00830499270113144, -0.00841802124865408, -0.00848307522997968, - -0.0085042656443516, -0.00849295824096124, -0.00839147561950324, - -0.00828327034284793, -0.00816843894092232, -0.008049056513545, - -0.00791562168709256, -0.00775005202155766, -0.00757154251383843, - -0.0074274103385848, -0.00738947029134296, -0.00709700275493949, - -0.0067613223993547, -0.00640531881241802, -0.00600393960450419, - -0.00517897933677813, -0.00490918460065305, -0.00454386493034265, - -0.00407878004330318, -0.0035896338033918, -0.00305173121000606, - -0.00255377975917565, -0.00207185074529489, -0.00164457040760896, - -0.00137077523060102, -0.0010480630493312, -0.000613823799974871, - -0.000184690354546028, 0.000254353480181171, 0.00713138993073528, - 0.00750342401064226, 0.00774719936052211, 0.00791976472814669, - 0.00749934943727616, 0.00696661913925289, 0.00660515516800858, - 0.00637466538406726, 0.00616551678311308, 0.00593963299954579, - 0.00567891706826574, 0.00444053891847047, 0.00481418572716699, - 0.00406558162762404, 0.00520802668304554, -0.00322953885243127, - -0.00316476872323188, -0.00286472003819861, -0.0033321048605613, - -0.00229884455672471, -0.00180857744869653, -0.00135693181536052, - -0.000861415608419675, -0.000241563159536332, 0.00038924991276971, - 0.000945945831656299, 0.00149963933319419, 0.00257933733691483, - 0.00211043129359778, 0.00301853858679146, 0.00435462707048169, - 0.00411557097313692, 0.00499725343947525, 0.0046612471169928, - 0.00537888036207677, 0.00537613251939996, 0.00543186480027724, - 0.00563136179075048, 0.00589356950135627, 0.00619248958683973, - 0.00657008999863064, 0.00692697908511486, 0.00681514137157108, - 0.00702395787220212, 0.00669450582313061, -0.00754379065846541, - -0.00725380054975392, -0.00781665706847614, -0.00794752047340216, - -0.00762550226114007, -0.00739253699883003, -0.00692564219115145, - -0.00668658818260226, -0.00652898337392579, -0.00609554584535534, - -0.00573554573522349, -0.00537872713074107, -0.00447612626948052, - -0.00498582727988681, -0.00406853186373631, 0.00324078875487272, - 0.00316853484451584, 0.00288424018337275, 0.00334838513342697, - 0.00233097317224033, 0.00178017632677902, 0.00125194494807649, - 0.00071708029509797, 0.000167039521260295, -0.000380901119571797, - -0.000927121301050169, -0.00145497347546324, -0.00195458740753764, - -0.00243497590420416, -0.00289474743940917, -0.00332981220785973, - -0.00379161325587866, -0.00428713506628512, -0.00474047966517968, - -0.00547521724955146, -0.00570492325491303, -0.00598159024221538, - -0.00626002757337084, -0.00661610822368374, -0.00691258167197377, - -0.0068142033975303, -0.00700157793719764, -0.00671038703634753, - -0.00465788416576583, -0.00431742796956331, -0.00377577648673136, - -0.00330502946602938, -0.00282373435540444, -0.00232844711073496, - -0.0018264367307588, -0.00124970477611186, -0.000652548962997315, - -0.000254884069160406, 7.25871100621251e-05, 0.000683535788613832, - 0.00121022493662693, 0.00168485247660193, 0.00205385004315952, - -0.000509863684248005, -0.00107353891817812, -0.00162030450730059, - -0.00212676980152745, -0.00260593033218598, -0.00303861889662553, - -0.00338004270781903, 0.00378036612609548, 0.00419794335705535, - 0.00461013558469735, 0.00500629181208298, 0.00538451089790306, - 0.00574782107391019, 0.00609177123916778, 0.0063941959302408, - 0.00660236062335457, 0.0068207351486029, 0.00702986440235276, - 0.00760872854340889, 0.00713436892737739, 0.00760184108677261, - 0.00804164891070841, 0.00803262320893576, 0.00798210314191304, - 0.00789459743792141, 0.00778682414300405, 0.00766945011228193, - 0.00755514941844847, 0.00744742552955125, 0.00722713330152844, - 0.00695617156631778, 0.00663499031086995, 0.00648881936927459, - 0.00624125114962395, 0.00599871156702235, 0.00714784872891833, - 0.00682693827499989, 0.00672677017579838, 0.00657673062600733, - 0.00638476431396846, 0.00620800787305814, 0.00582709323848529, - 0.00614128433058115, 0.00429460445004135, 0.0038878049390216, - 0.00345159046194863, 0.00300945387431494, 0.00257317283474238, - 0.00211643695697903, 0.00159802873994956, 0.0010825420007722, - 0.000578718931043376, 0.000103846844978928, -0.000269521109743858, - -0.000515557926623766, -0.000783148589338447, -0.00114303995418551, - -0.00153005223203094, -0.00191144556175524, 0.00360152147005805, - 0.00396925097835536, 0.00434601391092427, 0.00472390903328167, - 0.00510198219160847, 0.00546801602977814, -0.00375888096351825, - -0.0041697992278899, -0.00456791337603761, -0.00493624301599775, - -0.00525266575748645, -0.00549195281904615, -0.00580215136874904, - -0.00613359258066633, -0.00647893773939935, -0.00683608466918612, - -0.00720381291956353, -0.00746619834162411, -0.00747768692447636, - -0.00751569304385837, -0.00753499280891323, -0.0080104639307542, - -0.00801123764896946, -0.00797000984468432, -0.007888583728198, - -0.00778962908708675, -0.00768696542800751, -0.00759516243078653, - -0.00751174276885529, -0.00732322580105987, -0.00712079059118168, - -0.00690396983746516, -0.00647925110251665, -0.00612459226540036, - -0.00577358015185198, 0.00585112622437243, 0.00575495002817111, - 0.00597624263604857, 0.00626884267594314, 0.00657235012034025, - 0.0068692104952201, 0.00711401721488374, 0.00713523421945088, - 0.00730030554424127, 0.00719086112462725, 0.00740634190623519, - 0.00750066178599708, 0.00758919656169513, 0.00771142316101527, - 0.00402735644061768, 0.00363535782954243, 0.00323129594788899, - 0.0028349269440902, 0.00250463952674761, -0.000575384123685008, - -0.000987777827331993, -0.00138917495281619, -0.00170387914007938, - -0.00358371708771691, -0.00395136319925835, -0.00431693265059372, - -0.00467033585612597, -0.00496980909136854, -0.00709173498114622, - -0.00711285868609321, -0.00719116456205263, -0.00564543228279045, - -0.00584119235342502, -0.00611168336150164, -0.00642136863856922, - -0.00668727920233991, -0.00694853599195016, -0.00714979801881785, - -0.00719766040145831, -0.00756820262076125, -0.00753570404675703, - -0.00747688894642108, -0.00739512262928005, -0.00730185154530106, - -0.0072110922165486, 0.0033914539929622, 0.00370384728934921, - -0.00338994692907234, -0.00370509303598317, 0.00382365233656541, - 0.00344196478802544, -0.00717795316950064, -0.00708704440482041 ; -} diff --git a/tests/small/Heat2DMMCylWithSource/input.yaml b/tests/small/Heat2DMMCylWithSource/input.yaml deleted file mode 100644 index 1a1f023a26..0000000000 --- a/tests/small/Heat2DMMCylWithSource/input.yaml +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 2D - Solution Method: Steady - MaterialDB Filename: materials.yaml - Dirichlet BCs: - DBC on NS ambient for DOF T: 3.13149999999999977e+02 - ThermalConductivity: - ThermalConductivity Type: Block Dependent - Response Functions: - Number Of Responses: 2 - Response 0: - Name: Solution Max Value - Response 1: - Name: Solution Inf Norm File - Discretization: - Method: Exodus - Exodus Input File Name: fuel_volume.exo - Exodus Output File Name: fuel_volume-out.exo - Separate Evaluators by Element Block: true - Regression For Response 0: - Test Value: 6.72655999999999949e+02 - Absolute Tolerance: 1.00000000000000000e+00 - Relative Tolerance: 1.00000000000000000e+00 - Regression For Response 1: - Test Value: 0.00000000000000000e+00 - Absolute Tolerance: 1.00000000000000000e+00 - Relative Tolerance: 1.00000000000000000e+00 - Piro: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 2 - Prec Type: ILU - Ifpack Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 2 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/Heat2DMMCylWithSource/inputT.yaml b/tests/small/Heat2DMMCylWithSource/inputT.yaml deleted file mode 100644 index c7ebfd644a..0000000000 --- a/tests/small/Heat2DMMCylWithSource/inputT.yaml +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: Heat 2D - Solution Method: Steady - MaterialDB Filename: materials.yaml - Dirichlet BCs: - DBC on NS ambient for DOF T: 3.13149999999999977e+02 - ThermalConductivity: - ThermalConductivity Type: Block Dependent - Response Functions: - Number Of Responses: 2 - Response 0: - Name: Solution Max Value - Response 1: - Name: Solution Inf Norm File - Discretization: - Method: Exodus - Exodus Input File Name: fuel_volume.exo - Exodus Output File Name: fuel_volume-out_tpetra.exo - Separate Evaluators by Element Block: true - Regression For Response 0: - Test Value: 6.72655999999999949e+02 - Absolute Tolerance: 1.00000000000000000e+00 - Relative Tolerance: 1.00000000000000000e+00 - Regression For Response 1: - Test Value: 0.00000000000000000e+00 - Absolute Tolerance: 1.00000000000000000e+00 - Relative Tolerance: 1.00000000000000000e+00 - Piro: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 2 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 2 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/Heat2DMMCylWithSource/materials.yaml b/tests/small/Heat2DMMCylWithSource/materials.yaml deleted file mode 100644 index 29efbc4eb2..0000000000 --- a/tests/small/Heat2DMMCylWithSource/materials.yaml +++ /dev/null @@ -1,31 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Reference Material: INERT - ElementBlocks: - fuel: - material: UO2 - clad: - material: ZR4 - environ: - material: INERT - Materials: - UO2: - Category: UraniumDioxide - ThermalConductivity: - Name: Constant - Value: 4.98439999999999994e+00 - Source Functions: - Constant: - Value: 2.00950000000000000e+04 - ZR4: - Category: Zircalloy - ThermalConductivity: - Name: Constant - Value: 1.70330000000000013e+01 - INERT: - Category: Cask plus He - ThermalConductivity: - Name: Constant - Value: 4.00000000000000019e-04 -... diff --git a/tests/small/Heat2DMMCylWithSource/runtest.cmake b/tests/small/Heat2DMMCylWithSource/runtest.cmake deleted file mode 100644 index ba3ad1b71c..0000000000 --- a/tests/small/Heat2DMMCylWithSource/runtest.cmake +++ /dev/null @@ -1,28 +0,0 @@ -# 1. Run the program and generate the exodus output - -message("Running the test prep code:") -message("${AUX_ENV} " " ${AUX_PROG} ") - -# Get rid of any spaces -STRING(STRIP "${AUX_ENV}" AUX_PROG_ENV) -STRING(STRIP "${AUX_PROG}" AUX_PROG_PROG) - -EXECUTE_PROCESS(COMMAND ${AUX_PROG_ENV} ${AUX_PROG_PROG} - RESULT_VARIABLE HAD_ERROR) - -if(HAD_ERROR) - message(FATAL_ERROR "Test prep didn't run: test failed") -endif() - -# 2. Run Albany - -message("Running the command:") -message("${TEST_PROG} " " ${TEST_ARGS}") - -EXECUTE_PROCESS(COMMAND ${TEST_PROG} ${TEST_ARGS} - RESULT_VARIABLE HAD_ERROR) - -if(HAD_ERROR) - message(FATAL_ERROR "Albany didn't run: test failed") -endif() - diff --git a/tests/small/Heat2DTriangles/CMakeLists.txt b/tests/small/Heat2DTriangles/CMakeLists.txt deleted file mode 100644 index 3cf50b722c..0000000000 --- a/tests/small/Heat2DTriangles/CMakeLists.txt +++ /dev/null @@ -1,24 +0,0 @@ -# Name the test with the directory name -get_filename_component(testNameRoot ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -#################################### -### Main tests ### -#################################### - -set(testName ${testNameRoot}) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - - add_test(${testName}_Epetra ${Albany.exe} input.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Basic;Epetra;Forward") -endif() - -if (ALBANY_IFPACK2) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - - add_test(${testName}_Tpetra ${Albany.exe} inputT.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Basic;Tpetra;Forward") -endif () diff --git a/tests/small/Heat2DTriangles/heat2dtri.exo b/tests/small/Heat2DTriangles/heat2dtri.exo deleted file mode 100644 index e479b9f0ba..0000000000 Binary files a/tests/small/Heat2DTriangles/heat2dtri.exo and /dev/null differ diff --git a/tests/small/Heat2DTriangles/input.yaml b/tests/small/Heat2DTriangles/input.yaml deleted file mode 100644 index 41a1724c23..0000000000 --- a/tests/small/Heat2DTriangles/input.yaml +++ /dev/null @@ -1,115 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 2D - Compute Sensitivities: true - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 1.50000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 1.00000000000000000e+00 - DBC on NS NodeSet2 for DOF T: 1.00000000000000000e+00 - DBC on NS NodeSet3 for DOF T: 1.00000000000000000e+00 - Source Functions: - Quadratic: - Nonlinear Factor: 3.39999999999999991e+00 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 5 - Scalar 0: - Name: DBC on NS NodeSet0 for DOF T - Scalar 1: - Name: DBC on NS NodeSet1 for DOF T - Scalar 2: - Name: DBC on NS NodeSet2 for DOF T - Scalar 3: - Name: DBC on NS NodeSet3 for DOF T - Scalar 4: - Name: Quadratic Nonlinear Factor - Response Functions: - Number Of Responses: 2 - Response 0: - Name: Solution Average - Response 1: - Name: Solution Two Norm - Discretization: - 1D Elements: 40 - 2D Elements: 40 - Method: STK2D - Exodus Output File Name: heat2dtri.exo - Cell Topology: Tri - Cubature Degree: 2 - Regression For Response 0: - Test Value: 1.39120460000000001e+00 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Values: [4.51365000000000016e-01, 4.26240999999999981e-01, 4.35618000000000005e-01, 4.35634000000000021e-01, 1.71572000000000002e-01] - Regression For Response 1: - Test Value: 5.79192999999999998e+01 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Values: [2.04554000000000009e+01, 1.71991000000000014e+01, 1.80794999999999995e+01, 1.80805000000000007e+01, 7.68336000000000041e+00] - Piro: - LOCA: - Bifurcation: { } - Constraints: { } - Predictor: - First Step Predictor: { } - Last Step Predictor: { } - Step Size: { } - Stepper: - Eigensolver: { } - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/Heat2DTriangles/inputT.yaml b/tests/small/Heat2DTriangles/inputT.yaml deleted file mode 100644 index 4ba0049057..0000000000 --- a/tests/small/Heat2DTriangles/inputT.yaml +++ /dev/null @@ -1,115 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: Heat 2D - Compute Sensitivities: true - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 1.50000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 1.00000000000000000e+00 - DBC on NS NodeSet2 for DOF T: 1.00000000000000000e+00 - DBC on NS NodeSet3 for DOF T: 1.00000000000000000e+00 - Source Functions: - Quadratic: - Nonlinear Factor: 3.39999999999999991e+00 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 5 - Scalar 0: - Name: DBC on NS NodeSet0 for DOF T - Scalar 1: - Name: DBC on NS NodeSet1 for DOF T - Scalar 2: - Name: DBC on NS NodeSet2 for DOF T - Scalar 3: - Name: DBC on NS NodeSet3 for DOF T - Scalar 4: - Name: Quadratic Nonlinear Factor - Response Functions: - Number Of Responses: 2 - Response 0: - Name: Solution Average - Response 1: - Name: Solution Two Norm - Discretization: - 1D Elements: 40 - 2D Elements: 40 - Method: STK2D - Exodus Output File Name: heat2dtri_tpetra.exo - Cell Topology: Tri - Cubature Degree: 2 - Regression For Response 0: - Test Value: 1.39120460000000001e+00 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Values: [4.51365000000000016e-01, 4.26240999999999981e-01, 4.35618000000000005e-01, 4.35634000000000021e-01, 1.71572000000000002e-01] - Regression For Response 1: - Test Value: 5.79192999999999998e+01 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Values: [2.04554000000000009e+01, 1.71991000000000014e+01, 1.80794999999999995e+01, 1.80805000000000007e+01, 7.68336000000000041e+00] - Piro: - LOCA: - Bifurcation: { } - Constraints: { } - Predictor: - First Step Predictor: { } - Last Step Predictor: { } - Step Size: { } - Stepper: - Eigensolver: { } - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 1 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/Heat3DPamgen/CMakeLists.txt b/tests/small/Heat3DPamgen/CMakeLists.txt deleted file mode 100644 index a1f2358035..0000000000 --- a/tests/small/Heat3DPamgen/CMakeLists.txt +++ /dev/null @@ -1,22 +0,0 @@ -# Name the test with the directory name -get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cube101113.pg - ${CMAKE_CURRENT_BINARY_DIR}/cube101113.pg COPYONLY) - - add_test(${testName}_Epetra ${Albany.exe} input.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Basic;Epetra;Forward") -endif() - -if (ALBANY_IFPACK2) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cube101113.pg - ${CMAKE_CURRENT_BINARY_DIR}/cube101113.pg COPYONLY) - - add_test(${testName}_Tpetra ${Albany.exe} inputT.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Basic;Tpetra;Forward") -endif () diff --git a/tests/small/Heat3DPamgen/cube101113.pg b/tests/small/Heat3DPamgen/cube101113.pg deleted file mode 100644 index 096c54ab4a..0000000000 --- a/tests/small/Heat3DPamgen/cube101113.pg +++ /dev/null @@ -1,21 +0,0 @@ -mesh three-d - rectilinear - nx = 10 - ny = 11 - nz = 13 - bx = 1 - by = 1 - bz = 1 - gmin = 0.0 0.0 0.0 - gmax = 1.0 1.0 1.0 - end - set assign - nodeset,ilo,1 - nodeset,ihi,2 - nodeset,jlo,3 - nodeset,jhi,4 - nodeset,klo,5 - nodeset,khi,6 - end -end - diff --git a/tests/small/Heat3DPamgen/input.yaml b/tests/small/Heat3DPamgen/input.yaml deleted file mode 100644 index 9d3be6e1b2..0000000000 --- a/tests/small/Heat3DPamgen/input.yaml +++ /dev/null @@ -1,122 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 3D - Phalanx Graph Visualization Detail: 1 - Compute Sensitivities: true - Dirichlet BCs: - DBC on NS nodelist_1 for DOF T: 2.00000000000000000e+00 - DBC on NS nodelist_2 for DOF T: 2.00000000000000000e+00 - DBC on NS nodelist_3 for DOF T: 1.00000000000000000e+00 - DBC on NS nodelist_4 for DOF T: 1.00000000000000000e+00 - DBC on NS nodelist_5 for DOF T: 1.50000000000000000e+00 - DBC on NS nodelist_6 for DOF T: 1.50000000000000000e+00 - Initial Condition: - Function: Constant - Function Data: [1.50000000000000000e+00] - ThermalConductivity: - ThermalConductivity Type: Constant - Value: 3.00000000000000000e+00 - Source Functions: - Quadratic: - Nonlinear Factor: 3.00000000000000000e+00 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 8 - Scalar 0: - Name: DBC on NS nodelist_1 for DOF T - Scalar 1: - Name: DBC on NS nodelist_2 for DOF T - Scalar 2: - Name: DBC on NS nodelist_3 for DOF T - Scalar 3: - Name: DBC on NS nodelist_4 for DOF T - Scalar 4: - Name: DBC on NS nodelist_5 for DOF T - Scalar 5: - Name: DBC on NS nodelist_6 for DOF T - Scalar 6: - Name: Quadratic Nonlinear Factor - Scalar 7: - Name: ThermalConductivity - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Two Norm - Discretization: - Method: Pamgen - Exodus Output File Name: cube_pg.exo - Pamgen Input File Name: cube101113.pg - Workset Size: 100 - Cubature Degree: 3 - Regression For Response 0: - Test Value: 6.68057000000000016e+01 - Relative Tolerance: 1.00000000000000002e-03 - Sensitivity For Parameter 0: - Test Values: [8.14700999999999986e+00, 8.14700999999999986e+00, 6.27970000000000006e+00, 6.27977000000000007e+00, 7.84370000000000012e+00, 7.84374000000000038e+00, 6.24310000000000032e-01, -6.24310000000000032e-01] - Piro: - LOCA: - Bifurcation: { } - Constraints: { } - Predictor: - First Step Predictor: { } - Last Step Predictor: { } - Step Size: { } - Stepper: - Eigensolver: { } - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/Heat3DPamgen/inputT.yaml b/tests/small/Heat3DPamgen/inputT.yaml deleted file mode 100644 index be30856506..0000000000 --- a/tests/small/Heat3DPamgen/inputT.yaml +++ /dev/null @@ -1,122 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: Heat 3D - Phalanx Graph Visualization Detail: 1 - Compute Sensitivities: true - Dirichlet BCs: - DBC on NS nodelist_1 for DOF T: 2.00000000000000000e+00 - DBC on NS nodelist_2 for DOF T: 2.00000000000000000e+00 - DBC on NS nodelist_3 for DOF T: 1.00000000000000000e+00 - DBC on NS nodelist_4 for DOF T: 1.00000000000000000e+00 - DBC on NS nodelist_5 for DOF T: 1.50000000000000000e+00 - DBC on NS nodelist_6 for DOF T: 1.50000000000000000e+00 - Initial Condition: - Function: Constant - Function Data: [1.50000000000000000e+00] - ThermalConductivity: - ThermalConductivity Type: Constant - Value: 3.00000000000000000e+00 - Source Functions: - Quadratic: - Nonlinear Factor: 3.00000000000000000e+00 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 8 - Scalar 0: - Name: DBC on NS nodelist_1 for DOF T - Scalar 1: - Name: DBC on NS nodelist_2 for DOF T - Scalar 2: - Name: DBC on NS nodelist_3 for DOF T - Scalar 3: - Name: DBC on NS nodelist_4 for DOF T - Scalar 4: - Name: DBC on NS nodelist_5 for DOF T - Scalar 5: - Name: DBC on NS nodelist_6 for DOF T - Scalar 6: - Name: Quadratic Nonlinear Factor - Scalar 7: - Name: ThermalConductivity - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Two Norm - Discretization: - Method: Pamgen - Exodus Output File Name: cube_pg_tpetra.exo - Pamgen Input File Name: cube101113.pg - Workset Size: 100 - Cubature Degree: 3 - Regression For Response 0: - Test Value: 6.68057000000000016e+01 - Relative Tolerance: 1.00000000000000002e-03 - Sensitivity For Parameter 0: - Test Values: [8.14700999999999986e+00, 8.14700999999999986e+00, 6.27970000000000006e+00, 6.27977000000000007e+00, 7.84370000000000012e+00, 7.84374000000000038e+00, 6.24310000000000032e-01, -6.24310000000000032e-01] - Piro: - LOCA: - Bifurcation: { } - Constraints: { } - Predictor: - First Step Predictor: { } - Last Step Predictor: { } - Step Size: { } - Stepper: - Eigensolver: { } - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 1 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/Heat3DSim/cube-serial.sms b/tests/small/Heat3DSim/cube-serial.sms deleted file mode 100644 index 14cf33d4a4..0000000000 --- a/tests/small/Heat3DSim/cube-serial.sms +++ /dev/null @@ -1,854 +0,0 @@ -smi 5 0 - smd 18 -parasolid 18 1 -* -1 --0.050000000000000003 0 -0.050000000000000003 -0.050000000000000003 0.10000000000000001 0.050000000000000003 --2147483648 1007 5 0 -0 0 -0.050000000000000003 0 -0.050000000000000003 -0.050000000000000003 0.10000000000000001 0.050000000000000003 -_sim_empty --1 -0 0 0 0 - -0 -2 11 20 12 -0 0 0 0 -199 -7 4 26 -12 4 26 -26 0 5 0 0 0 2 -7 12 -_sim_empty -26 --0.050000000000000003 0.10000000000000001 0.050000000000000003 -37 4 23 -45 4 23 -23 0 5 0 0 0 2 -37 45 -_sim_empty -23 --0.050000000000000003 0.10000000000000001 -0.050000000000000003 -21 4 20 -29 4 20 -20 0 5 0 0 0 2 -21 29 -_sim_empty -20 -0.050000000000000003 0.10000000000000001 -0.050000000000000003 -5 4 17 -13 4 17 -17 0 5 0 0 0 2 -5 13 -_sim_empty -17 -0.050000000000000003 0.10000000000000001 0.050000000000000003 -2 4 60 -10 4 60 -83 4 60 -60 0 5 0 0 0 3 -2 10 83 -_sim_empty -60 --0.050000000000000003 0.050000000000000003 0.050000000000000003 -36 4 62 -47 4 62 -85 4 62 -62 0 5 0 0 0 3 -36 47 85 -_sim_empty -62 --0.050000000000000003 0.050000000000000003 -0.050000000000000003 -20 4 64 -31 4 64 -87 4 64 -64 0 5 0 0 0 3 -20 31 87 -_sim_empty -64 -0.050000000000000003 0.050000000000000003 -0.050000000000000003 -4 4 66 -15 4 66 -81 4 66 -66 0 5 0 0 0 3 -4 15 81 -_sim_empty -66 -0.050000000000000003 0.050000000000000003 0.050000000000000003 -130 4 232 -138 4 232 -232 0 5 0 0 0 2 -130 138 -_sim_empty -232 -0.050000000000000003 0 -0.050000000000000003 -98 4 234 -106 4 234 -234 0 5 0 0 0 2 -98 106 -_sim_empty -234 --0.050000000000000003 0 -0.050000000000000003 -100 4 236 -111 4 236 -236 0 5 0 0 0 2 -100 111 -_sim_empty -236 --0.050000000000000003 0 0.050000000000000003 -116 4 238 -127 4 238 -238 0 5 0 0 0 2 -116 127 -_sim_empty -238 -0.050000000000000003 0 0.050000000000000003 -2 5 80 5 4 -7 5 80 13 15 -80 1 5 0 1 0 2 17 66 -2 7 -_sim_empty -80 -1 0.025000000000000001 0.050000000000000003 0.075000000000000011 0.050000000000000003 -10 5 79 21 20 -15 5 79 29 31 -79 1 5 0 1 0 2 20 64 -10 15 -_sim_empty -79 -1 0.025000000000000001 0.050000000000000003 0.075000000000000011 -0.050000000000000003 -18 5 78 37 36 -23 5 78 45 47 -78 1 5 0 1 0 2 23 62 -18 23 -_sim_empty -78 -1 0.025000000000000001 -0.050000000000000003 0.075000000000000011 -0.050000000000000003 -4 5 77 7 2 -5 5 77 12 10 -77 1 5 0 1 0 2 26 60 -4 5 -_sim_empty -77 -1 0.025000000000000001 -0.050000000000000003 0.075000000000000011 0.050000000000000003 -27 5 15 7 37 -30 5 15 12 45 -15 1 5 0 1 0 2 26 23 -27 30 -_sim_empty -15 -1 0.050000000000000003 -0.05000000000000001 0.10000000000000001 0 -19 5 13 37 21 -22 5 13 45 29 -13 1 5 0 1 0 2 23 20 -19 22 -_sim_empty -13 -1 0.050000000000000003 0 0.10000000000000001 -0.05000000000000001 -11 5 11 21 5 -14 5 11 29 13 -11 1 5 0 1 0 2 20 17 -11 14 -_sim_empty -11 -1 0.050000000000000003 0.050000000000000003 0.10000000000000001 0 -3 5 9 5 7 -6 5 9 13 12 -9 1 5 0 1 0 2 17 26 -3 6 -_sim_empty -9 -1 0.050000000000000003 0 0.10000000000000001 0.050000000000000003 -25 5 52 2 36 -32 5 52 10 47 -42 5 52 83 85 -52 1 5 0 1 0 3 60 62 -25 32 42 -_sim_empty -52 -1 0.050000000000000003 -0.05000000000000001 0.050000000000000003 0 -17 5 54 36 20 -24 5 54 47 31 -43 5 54 85 87 -54 1 5 0 1 0 3 62 64 -17 24 43 -_sim_empty -54 -1 0.050000000000000003 0 0.050000000000000003 -0.05000000000000001 -9 5 56 20 4 -16 5 56 31 15 -44 5 56 87 81 -56 1 5 0 1 0 3 64 66 -9 16 44 -_sim_empty -56 -1 0.050000000000000003 0.050000000000000003 0.050000000000000003 0 -1 5 58 4 2 -8 5 58 15 10 -41 5 58 81 83 -58 1 5 0 1 0 3 66 60 -1 8 41 -_sim_empty -58 -1 0.050000000000000003 0 0.050000000000000003 0.050000000000000003 -50 5 200 2 100 -55 5 200 83 111 -200 1 5 0 1 0 2 60 236 -50 55 -_sim_empty -200 -1 0.025000000000000001 -0.050000000000000003 0.025000000000000001 0.050000000000000003 -52 5 202 36 98 -53 5 202 85 106 -202 1 5 0 1 0 2 62 234 -52 53 -_sim_empty -202 -1 0.025000000000000001 -0.050000000000000003 0.025000000000000001 -0.050000000000000003 -68 5 204 20 130 -69 5 204 87 138 -204 1 5 0 1 0 2 64 232 -68 69 -_sim_empty -204 -1 0.025000000000000001 0.050000000000000003 0.025000000000000001 -0.050000000000000003 -58 5 206 4 116 -63 5 206 81 127 -206 1 5 0 1 0 2 66 238 -58 63 -_sim_empty -206 -1 0.025000000000000001 0.050000000000000003 0.025000000000000001 0.050000000000000003 -76 5 216 130 116 -77 5 216 138 127 -216 1 5 0 1 0 2 232 238 -76 77 -_sim_empty -216 -1 0.050000000000000003 0.050000000000000003 0 0 -65 5 218 98 130 -72 5 218 106 138 -218 1 5 0 1 0 2 234 232 -65 72 -_sim_empty -218 -1 0.050000000000000003 0 0 -0.05000000000000001 -49 5 220 100 98 -56 5 220 111 106 -220 1 5 0 1 0 2 236 234 -49 56 -_sim_empty -220 -1 0.050000000000000003 -0.05000000000000001 0 0 -57 5 222 116 100 -64 5 222 127 111 -222 1 5 0 1 0 2 238 236 -57 64 -_sim_empty -222 -1 0.050000000000000003 0 0 0.050000000000000003 -1 6 88 1 0 2 -4 58 1 0 80 2 0 9 3 1 77 4 1 2 6 88 0 0 1 -4 77 5 0 9 6 0 80 7 1 58 8 1 88 2 5 0 2 0 -1 1 - - 1 2 - -0 -_sim_empty -88 -1 -0.099988761031994958 -0.028741887714127959 -0.049988761031994955 0.071258112285872047 0.050000000000000003 -0 -3 6 86 1 0 4 -4 56 9 0 79 10 0 11 11 1 80 2 1 4 6 86 0 0 3 -4 80 7 0 11 14 0 79 15 1 56 16 1 86 2 5 0 2 0 -1 3 - - 1 4 - -0 -_sim_empty -86 -1 -0.099988761031994958 -0.028741887714127959 0.050000000000000003 0.071258112285872047 0.049988761031994955 -0 -5 6 84 1 0 6 -4 54 17 0 78 18 0 13 19 1 79 10 1 6 6 84 0 0 5 -4 79 15 0 13 22 0 78 23 1 54 24 1 84 2 5 0 2 0 -1 5 - - 1 6 - -0 -_sim_empty -84 -1 -0.099988761031994958 -0.028741887714127959 0.049988761031994955 0.071258112285872047 -0.050000000000000017 -0 -7 6 82 1 0 8 -4 52 25 0 77 4 0 15 27 1 78 18 1 8 6 82 0 0 7 -4 78 23 0 15 30 0 77 5 1 52 32 1 82 2 5 0 2 0 -1 7 - - 1 8 - -0 -_sim_empty -82 -1 -0.099988761031994958 -0.028741887714127959 -0.05000000000000001 0.071258112285872047 -0.049988761031994955 -0 -9 6 1 1 0 10 -4 9 3 0 11 11 0 13 19 0 15 27 0 10 6 1 0 0 9 -4 15 30 1 13 22 1 11 14 1 9 6 1 1 2 5 0 2 0 -1 9 - - 1 10 - -0 -_sim_empty -1 -1 -0.049988761031994955 -0.0074837754282559149 -0.0074837754282559149 0.10000000000000001 0.049988761031994955 -0 -11 6 48 1 0 12 -4 58 41 1 52 42 1 54 43 1 56 44 1 12 6 48 0 0 11 -4 56 16 0 54 24 0 52 32 0 58 8 0 48 2 5 0 2 0 -1 11 - - 1 12 - -0 -_sim_empty -48 -1 -0.049988761031994955 -0.0074837754282559149 -0.0074837754282559149 0.050000000000000003 0.049988761031994955 -0 -13 6 175 1 0 14 -4 220 49 0 200 50 0 52 25 1 202 52 1 14 6 175 0 0 13 -4 202 53 0 52 42 0 200 55 1 220 56 1 175 2 5 0 2 0 -1 13 - - 1 14 - -0 -_sim_empty -175 -1 -0.099988761031994958 -0.028741887714127959 -0.05000000000000001 0.021258112285872044 -0.049988761031994955 -0 -15 6 170 1 0 16 -4 222 57 0 206 58 0 58 1 1 200 50 1 16 6 170 0 0 15 -4 200 55 0 58 41 0 206 63 1 222 64 1 170 2 5 0 2 0 -1 15 - - 1 16 - -0 -_sim_empty -170 -1 -0.099988761031994958 -0.028741887714127959 -0.049988761031994955 0.021258112285872044 0.050000000000000003 -0 -17 6 180 1 0 18 -4 218 65 0 202 52 0 54 17 1 204 68 1 18 6 180 0 0 17 -4 204 69 0 54 43 0 202 53 1 218 72 1 180 2 5 0 2 0 -1 17 - - 1 18 - -0 -_sim_empty -180 -1 -0.099988761031994958 -0.028741887714127959 0.049988761031994955 0.021258112285872044 -0.050000000000000017 -0 -19 6 192 1 0 20 -4 222 57 1 220 49 1 218 65 1 216 76 1 20 6 192 0 0 19 -4 216 77 0 218 72 0 220 56 0 222 64 0 192 2 5 0 2 0 -1 19 - - 1 20 - -0 -_sim_empty -192 -1 -0.049988761031994955 -0.0074837754282559149 -0.0074837754282559149 0 0.049988761031994955 -0 -21 6 185 1 0 22 -4 216 76 0 204 68 0 56 9 1 206 58 1 22 6 185 0 0 21 -4 206 63 0 56 44 0 204 69 1 216 77 1 185 2 5 0 2 0 -1 21 - - 1 22 - -0 -_sim_empty -185 -1 -0.099988761031994958 -0.028741887714127959 0.050000000000000003 0.021258112285872044 0.049988761031994955 -0 -1 8 98 6 -88 0 86 0 84 0 82 0 1 0 48 0 98 3 5 0 3 0 1 -1 -0 -0 -_sim_empty -98 -2 8 198 6 -48 1 175 0 170 0 180 0 192 0 185 0 198 3 5 0 3 0 1 -2 -0 -0 -_sim_empty -198 -0 -1 -4 8 199 10 -88 1 82 1 84 1 86 1 1 1 185 1 170 1 175 1 180 1 192 1 199 3 8 0 303 0 1 -4 -0 -0 -_sim_empty --1 -0 -0 -1 -0 -1 -0 -1 - sms 10 -sms 10 0 -0 0 -65 154 118 30 30 -1e-08 1.0000000000000001e-15 -q 0 07 --0.050000000000000003 0.10000000000000001 0.050000000000000003 -0.075000002980232239 -n 0 05 --0.050000000000000003 0.10000000000000001 -0.050000000000000003 -0.075000002980232239 -k 0 06 -0.050000000000000003 0.10000000000000001 -0.050000000000000003 -0.075000002980232239 -h 0 06 -0.050000000000000003 0.10000000000000001 0.050000000000000003 -0.075000002980232239 -Y 0 06 --0.050000000000000003 0.050000000000000003 0.050000000000000003 -0.075000002980232239 -% 0 09 --0.050000000000000003 0.050000000000000003 -0.050000000000000003 -0.075000002980232239 -10 0 09 -0.050000000000000003 0.050000000000000003 -0.050000000000000003 -0.075000002980232239 -12 0 08 -0.050000000000000003 0.050000000000000003 0.050000000000000003 -0.075000002980232239 -3E 0 05 -0.050000000000000003 0 -0.050000000000000003 -0.075000002980232239 -3G 0 05 --0.050000000000000003 0 -0.050000000000000003 -0.075000002980232239 -3I 0 05 --0.050000000000000003 0 0.050000000000000003 -0.075000002980232239 -3K 0 06 -0.050000000000000003 0 0.050000000000000003 -0.075000002980232239 -f 0 15 --0.05000000000000001 0.10000000000000001 0 0.050000000000000003 -0.075000002980232239 -d 0 17 -0 0.10000000000000001 -0.05000000000000001 0.050000000000000003 -0.075000002980232239 -b 0 17 -0.050000000000000003 0.10000000000000001 0 0.050000000000000003 -0.075000002980232239 -9 0 17 -0 0.10000000000000001 0.050000000000000003 0.050000000000000003 -0.075000002980232239 -Q 0 1d --0.05000000000000001 0.050000000000000003 0 0.050000000000000003 -0.075000002980232239 -S 0 19 -0 0.050000000000000003 -0.05000000000000001 0.050000000000000003 -0.075000002980232239 -U 0 19 -0.050000000000000003 0.050000000000000003 0 0.050000000000000003 -0.075000002980232239 -W 0 1a -0 0.050000000000000003 0.050000000000000003 0.050000000000000003 -0.075000002980232239 -3o 0 16 -0.050000000000000003 0 0 0.050000000000000003 -0.075000002980232239 -3q 0 15 -0 0 -0.05000000000000001 0.050000000000000003 -0.075000002980232239 -3s 0 15 --0.05000000000000001 0 0 0.050000000000000003 -0.075000002980232239 -3u 0 18 -0 0 0.050000000000000003 0.050000000000000003 -0.075000002980232239 -1 0 2d -0 0.10000000000000001 -1.7347234759768071e-18 1.7347234759768071e-18 0 -0.075000002980232239 -M 0 2h --8.6736173798840355e-19 0.050000000000000003 8.6736173798840355e-19 -8.6736173798840355e-19 -8.6736173798840355e-19 -0.075000002980232239 -30 0 2f --8.6736173798840355e-19 0 8.6736173798840355e-19 -8.6736173798840355e-19 -8.6736173798840355e-19 -0.075000002980232239 -1y 0 37 -0.021428571428571432 0.07857142857142857 -0.028571428571428571 -0.075000002980232239 -1y 0 38 --0.025000000000000001 0.074999999999999997 0.025000000000000001 -0.075000002980232239 -36 0 38 -0.025000000000000001 0.025000000000000001 0.025000000000000001 -0.075000002980232239 -1g 0 13 3 7 -1f 0 13 2 6 -1e 0 13 1 5 -1d 0 13 0 4 -f 0 13 0 c -f 0 12 c 1 -d 0 12 1 d -d 0 13 d 2 -b 0 13 2 e -b 0 13 e 3 -9 0 13 3 f -9 0 13 f 0 -Q 0 15 4 g -Q 0 15 g 5 -S 0 14 5 h -S 0 15 h 6 -U 0 14 6 i -U 0 14 i 7 -W 0 14 7 j -W 0 14 j 4 -38 0 12 4 a -3a 0 13 5 9 -3c 0 13 6 8 -3e 0 13 7 b -3o 0 12 8 k -3o 0 13 k b -3q 0 12 9 l -3q 0 12 l 8 -3s 0 12 a m -3s 0 12 m 9 -3u 0 13 b n -3u 0 13 n a -1o 0 23 f 7 -1o 0 24 j f -1o 0 23 j 0 -1m 0 24 e 6 -1m 0 23 i e -1m 0 23 i 3 -1k 0 24 d 5 -1k 0 24 h d -1k 0 23 h 2 -1i 0 24 g c -1i 0 23 g 1 -1i 0 23 g 0 -1 0 24 1 o -1 0 25 d o -1 0 24 c o -1 0 23 2 o -1 0 24 e o -1 0 24 f o -1 0 23 0 o -1 0 23 3 o -M 0 26 i p -M 0 25 7 p -M 0 26 j p -M 0 26 g p -M 0 25 5 p -M 0 25 h p -M 0 25 6 p -M 0 24 g j -2L 0 24 g a -2L 0 23 m g -2L 0 23 m 5 -2G 0 23 j b -2G 0 25 n j -2G 0 23 n 4 -2Q 0 23 h 9 -2Q 0 23 l h -2Q 0 23 l 6 -30 0 24 k q -30 0 23 b q -30 0 25 n q -30 0 23 a q -30 0 24 m q -30 0 24 9 q -30 0 24 l q -30 0 24 8 q -2V 0 23 i 8 -2V 0 24 k i -2V 0 23 k 7 -1y 0 38 p o -1y 0 34 5 o -1y 0 35 g o -1y 0 35 p e -1y 0 34 d p -1y 0 35 p f -1y 0 35 p 3 -1y 0 35 2 r -1y 0 34 d r -1y 0 34 h r -1y 0 34 e r -1y 0 35 p r -1y 0 34 o r -1y 0 33 c s -1y 0 34 p s -1y 0 36 g s -1y 0 33 4 s -1y 0 36 0 s -1y 0 35 o s -1y 0 35 j s -1y 0 34 f s -1y 0 34 6 r -36 0 37 p q -36 0 35 g q -36 0 35 5 q -36 0 35 h q -36 0 34 p n -36 0 35 g n -36 0 35 6 q -36 0 35 i q -36 0 35 p t -36 0 34 i t -36 0 35 7 t -36 0 35 q t -36 0 34 k t -36 0 35 b t -36 0 34 t n -36 0 34 t j -1o 0 23-j-x-y -1o 0 23-1+b+x -1o 0 23-z+y+c -1o 0 23+z+4-k -1m 0 23-h-A-B -1m 0 23-2+9+A -1m 0 23-C+B+a -1m 0 23+C+1-i -1k 0 23-f-D-E -1k 0 23-3+7+D -1k 0 23-F+E+8 -1k 0 23+F+2-g -1i 0 23-H+G+6 -1i 0 23+H+3-e -1i 0 23+5-G+I -1i 0 23-d-4-I -1 0 23-K-7+J -1 0 23-J-6+L -1 0 23-N-9+M -1 0 23-M-8+K -1 0 23-P-c+O -1 0 23-L-5+P -1 0 23-O-b+Q -1 0 23-Q-a+N -M 0 23-R+i+S -M 0 23-S+j+T -M 0 23-U+e+V -M 0 23-V+f+W -M 0 23-W+g+X -M 0 23-X+h+R -M 0 23+k+d+Y -M 0 23+U-T-Y -2L 0 23-t-Z-% -2L 0 23-l+d+Z -2L 0 23-@+%+e -2L 0 23+@+m-u -2G 0 23-v-10-11 -2G 0 23-o+j+10 -2G 0 23-12+11+k -2G 0 23+12+l-w -2Q 0 23-r-13-14 -2Q 0 23-m+f+13 -2Q 0 23-15+14+g -2Q 0 23+15+n-s -30 0 23-16+q+17 -30 0 23-17+v+18 -30 0 23-18+w+19 -30 0 23-19+t+1a -30 0 23-1a+u+1b -30 0 23-1b+r+1c -30 0 23-1c+s+1d -30 0 23-1d+p+16 -2V 0 23-p-1e-1f -2V 0 23-n+h+1e -2V 0 23-1g+1f+i -2V 0 23+1g+o-q -1y 0 33-V+1i-1h -1y 0 33-e+1j-1i -1y 0 33+U+1h-1j -1y 0 33-X-A-1k -1y 0 33+E+1l-W -1y 0 33+D+V-1l -1y 0 33-G+1j-L -1y 0 33+H+J-1j -1y 0 33-J+3+1i -1y 0 33+K-1i-D -1y 0 33-1h-1l+K -1y 0 33+1h-O-1m -1y 0 33+B-1k-R -1y 0 33-1k+1n-a -1y 0 33-R+C-1n -1y 0 33-S-1-1n -1y 0 33+1h-Q-1n -1y 0 33-1m+1n+b -1y 0 33+y-1m-T -1y 0 33+x+S+1m -1y 0 33-N-1k+1h -1y 0 33-8+1p-1o -1y 0 33-E+1q-1p -1y 0 33+F+1o-1q -1y 0 33-9+1o-1r -1y 0 33+1l+1s-1p -1y 0 33-W+1q-1s -1y 0 33-K+1p-1t -1y 0 33+M+1t-1o -1y 0 33+1k+1r-1s -1y 0 33+N+1t-1r -1y 0 33-1h+1s-1t -1y 0 33+G+1u-1w -1y 0 33-U+1w-1v -1y 0 33-d+1x-1w -1y 0 33-5+1y-1u -1y 0 33+4+1x-1y -1y 0 33+1j+1z-1w -1y 0 33-L+1u-1z -1y 0 33-k+1A-1x -1y 0 33+T+1v-1A -1y 0 33-z+1A-1y -1y 0 33-P+1y-1z -1y 0 33+O+1z-1B -1y 0 33-c+1B-1y -1y 0 33-y+1A-1B -1y 0 33+1C-1o+2 -1y 0 33+1C-1q+g -1y 0 33+1C-1s-X -1y 0 33+1C-1r+A -1y 0 33+1w-1y-I -1y 0 33-Y+1w-1A -1y 0 33+1v-1B-1m -1y 0 33+1v-1z-1h -36 0 33-U+1E-1D -36 0 33+e+1F-1E -36 0 33+V+1D-1F -36 0 33-%+1a-1E -36 0 33+@+1F-1a -36 0 33+14+1G-1c -36 0 33+13+1b-1G -36 0 33-1b-m+1F -36 0 33-U+1I-1H -36 0 33+1E-18-1I -36 0 33-1D+1H+18 -36 0 33-1E+Z+19 -36 0 33-W+1G-1D -36 0 33+g+1J-1G -36 0 33+X+1D-1J -36 0 33+15+1J-1c -36 0 33-1d-n+1J -36 0 33-1e+1K-1d -36 0 33-h+1J-1K -36 0 33+1G-1F+f -36 0 33-1K+R+1D -36 0 33-T-11-1H -36 0 33+d+1I+12 -36 0 33-Z+1I+w -36 0 33-16+1f+1K -36 0 33-R+1M-1L -36 0 33+i+1N-1M -36 0 33+S+1L-1N -36 0 33-1K+1M-1O -36 0 33+1D+1O-1L -36 0 33-1f+1P-1M -36 0 33+1g+1N-1P -36 0 33+o+1Q-1N -36 0 33-16+1P-1O -36 0 33+17+1O-1Q -36 0 33+q+1Q-1P -36 0 33-11-1I+Y -36 0 33+1O+1R+18 -36 0 33+1R-v+1Q -36 0 33-1R-1L+1H -36 0 33+1S-11-1R -36 0 33+1S+10+1Q -36 0 33-1S-1L-T -36 0 33-1N+j-1S -1y 0 4+r+V+W+X -1y 0 4+9+Z+%+s -1y 0 4+d+i+@+10 -1y 0 4+h+11+a+12 -1y 0 4-V-%-12+13 -1y 0 4-10+e-11-W -1y 0 4+5+15-Y+u -1y 0 4-15+7+16+17 -1y 0 4+p+18+8-17 -1y 0 4-14+19+n+1a -1y 0 4+1+1b+1c+q -1y 0 4+o+1d-16-19 -1y 0 4-18-1c+2-1a -1y 0 4+b+1e+1f+1g -1y 0 4-Z-1f+1i+1j -1y 0 4+k+1k-1e+1l -1y 0 4+j-1l-1h+1n -1y 0 4-13+1o-1i-1k -1y 0 4-1d-1n-1m-1o -1y 0 4-@-1p+1u+1v -1y 0 4+4-1w-1t+1y -1y 0 4+m+1z-1s-1v -1y 0 4+3+1B+1C-1y -1y 0 4+l-1A-1B-1z -1y 0 4-1D+1E-1g+c -1y 0 4-1E+1F-1j+t -1y 0 4-1F+1G+1m+Y -1y 0 4-1G+1D+1h+6 -1y 0 4-1H-1r+1t+g -1y 0 4+1H+f+1s+1p -1y 0 4-1I+w+1q+1x -1y 0 4+1I+1w+1r+v -1y 0 4-1J+1K+1A+14 -1y 0 4-1K-1q-1u-X -1y 0 4-1x-1b+1J-1C -36 0 4-r+1L+1M+1N -36 0 4+z-1M+1O+1P -36 0 4+F+1Q+1R+O -36 0 4+N+1S+A-1P -36 0 4-1L+1T+1U+1V -36 0 4-1O+x+M+1W -36 0 4-t+1X+1Y+1Z -36 0 4+H-1Y-1Q+1% -36 0 4+P+1@+I-1% -36 0 4+S+20+21-1@ -36 0 4-1X-s+22-1N -36 0 4-21-u-1Z+23 -36 0 4+y+26-25+E -36 0 4+L-1W-26-1U -36 0 4+G-1R-22-1S -36 0 4+Q+27+R-20 -36 0 4-p+28+29+2a -36 0 4-23+2b-28+2c -36 0 4+T-29+2d+2e -36 0 4-27+2g-2d-2b -36 0 4+U+2i-2f-2e -36 0 4+J-2h-2i-2g -36 0 4-2j+24-1T-w -36 0 4+2j-v+25+D -36 0 4-2k+2h+2l+K -36 0 4+2k-1V+2m-2c -36 0 4-2n+2o+B-2l -36 0 4+2n-2m-24+2p -36 0 4-2q+2f+C-2o -36 0 4+2q-2p-q-2a - -2 -smd 8 -sms 7788 - -
-4 -57 file:///lore/granzb/albany-ws/examples/Heat3DSim/cube.sms9 mesh.full6 # 1 0 0 -0 -1 -5 model4 -10 ./cube.smd27 model.nonmanifold.parasolid6 # 1 0 0 -
-15498 15532 diff --git a/tests/small/Heat3DSim/cube.smd b/tests/small/Heat3DSim/cube.smd deleted file mode 100644 index 72c9fbaa52..0000000000 --- a/tests/small/Heat3DSim/cube.smd +++ /dev/null @@ -1,599 +0,0 @@ -smi 5 0 - smd 18 -parasolid 18 1 -* -1 --0.050000000000000003 0 -0.050000000000000003 -0.050000000000000003 0.10000000000000001 0.050000000000000003 --2147483648 1007 5 0 -0 0 -0.050000000000000003 0 -0.050000000000000003 -0.050000000000000003 0.10000000000000001 0.050000000000000003 -_sim_empty --1 -0 0 0 0 - -0 -2 11 20 12 -0 0 0 0 -199 -7 4 26 -12 4 26 -26 0 5 0 0 0 2 -7 12 -_sim_empty -26 --0.050000000000000003 0.10000000000000001 0.050000000000000003 -37 4 23 -45 4 23 -23 0 5 0 0 0 2 -37 45 -_sim_empty -23 --0.050000000000000003 0.10000000000000001 -0.050000000000000003 -21 4 20 -29 4 20 -20 0 5 0 0 0 2 -21 29 -_sim_empty -20 -0.050000000000000003 0.10000000000000001 -0.050000000000000003 -5 4 17 -13 4 17 -17 0 5 0 0 0 2 -5 13 -_sim_empty -17 -0.050000000000000003 0.10000000000000001 0.050000000000000003 -2 4 60 -10 4 60 -83 4 60 -60 0 5 0 0 0 3 -2 10 83 -_sim_empty -60 --0.050000000000000003 0.050000000000000003 0.050000000000000003 -36 4 62 -47 4 62 -85 4 62 -62 0 5 0 0 0 3 -36 47 85 -_sim_empty -62 --0.050000000000000003 0.050000000000000003 -0.050000000000000003 -20 4 64 -31 4 64 -87 4 64 -64 0 5 0 0 0 3 -20 31 87 -_sim_empty -64 -0.050000000000000003 0.050000000000000003 -0.050000000000000003 -4 4 66 -15 4 66 -81 4 66 -66 0 5 0 0 0 3 -4 15 81 -_sim_empty -66 -0.050000000000000003 0.050000000000000003 0.050000000000000003 -130 4 232 -138 4 232 -232 0 5 0 0 0 2 -130 138 -_sim_empty -232 -0.050000000000000003 0 -0.050000000000000003 -98 4 234 -106 4 234 -234 0 5 0 0 0 2 -98 106 -_sim_empty -234 --0.050000000000000003 0 -0.050000000000000003 -100 4 236 -111 4 236 -236 0 5 0 0 0 2 -100 111 -_sim_empty -236 --0.050000000000000003 0 0.050000000000000003 -116 4 238 -127 4 238 -238 0 5 0 0 0 2 -116 127 -_sim_empty -238 -0.050000000000000003 0 0.050000000000000003 -2 5 80 5 4 -7 5 80 13 15 -80 1 5 0 1 0 2 17 66 -2 7 -_sim_empty -80 -1 0.025000000000000001 0.050000000000000003 0.075000000000000011 0.050000000000000003 -10 5 79 21 20 -15 5 79 29 31 -79 1 5 0 1 0 2 20 64 -10 15 -_sim_empty -79 -1 0.025000000000000001 0.050000000000000003 0.075000000000000011 -0.050000000000000003 -18 5 78 37 36 -23 5 78 45 47 -78 1 5 0 1 0 2 23 62 -18 23 -_sim_empty -78 -1 0.025000000000000001 -0.050000000000000003 0.075000000000000011 -0.050000000000000003 -4 5 77 7 2 -5 5 77 12 10 -77 1 5 0 1 0 2 26 60 -4 5 -_sim_empty -77 -1 0.025000000000000001 -0.050000000000000003 0.075000000000000011 0.050000000000000003 -27 5 15 7 37 -30 5 15 12 45 -15 1 5 0 1 0 2 26 23 -27 30 -_sim_empty -15 -1 0.050000000000000003 -0.05000000000000001 0.10000000000000001 0 -19 5 13 37 21 -22 5 13 45 29 -13 1 5 0 1 0 2 23 20 -19 22 -_sim_empty -13 -1 0.050000000000000003 0 0.10000000000000001 -0.05000000000000001 -11 5 11 21 5 -14 5 11 29 13 -11 1 5 0 1 0 2 20 17 -11 14 -_sim_empty -11 -1 0.050000000000000003 0.050000000000000003 0.10000000000000001 0 -3 5 9 5 7 -6 5 9 13 12 -9 1 5 0 1 0 2 17 26 -3 6 -_sim_empty -9 -1 0.050000000000000003 0 0.10000000000000001 0.050000000000000003 -25 5 52 2 36 -32 5 52 10 47 -42 5 52 83 85 -52 1 5 0 1 0 3 60 62 -25 32 42 -_sim_empty -52 -1 0.050000000000000003 -0.05000000000000001 0.050000000000000003 0 -17 5 54 36 20 -24 5 54 47 31 -43 5 54 85 87 -54 1 5 0 1 0 3 62 64 -17 24 43 -_sim_empty -54 -1 0.050000000000000003 0 0.050000000000000003 -0.05000000000000001 -9 5 56 20 4 -16 5 56 31 15 -44 5 56 87 81 -56 1 5 0 1 0 3 64 66 -9 16 44 -_sim_empty -56 -1 0.050000000000000003 0.050000000000000003 0.050000000000000003 0 -1 5 58 4 2 -8 5 58 15 10 -41 5 58 81 83 -58 1 5 0 1 0 3 66 60 -1 8 41 -_sim_empty -58 -1 0.050000000000000003 0 0.050000000000000003 0.050000000000000003 -50 5 200 2 100 -55 5 200 83 111 -200 1 5 0 1 0 2 60 236 -50 55 -_sim_empty -200 -1 0.025000000000000001 -0.050000000000000003 0.025000000000000001 0.050000000000000003 -52 5 202 36 98 -53 5 202 85 106 -202 1 5 0 1 0 2 62 234 -52 53 -_sim_empty -202 -1 0.025000000000000001 -0.050000000000000003 0.025000000000000001 -0.050000000000000003 -68 5 204 20 130 -69 5 204 87 138 -204 1 5 0 1 0 2 64 232 -68 69 -_sim_empty -204 -1 0.025000000000000001 0.050000000000000003 0.025000000000000001 -0.050000000000000003 -58 5 206 4 116 -63 5 206 81 127 -206 1 5 0 1 0 2 66 238 -58 63 -_sim_empty -206 -1 0.025000000000000001 0.050000000000000003 0.025000000000000001 0.050000000000000003 -76 5 216 130 116 -77 5 216 138 127 -216 1 5 0 1 0 2 232 238 -76 77 -_sim_empty -216 -1 0.050000000000000003 0.050000000000000003 0 0 -65 5 218 98 130 -72 5 218 106 138 -218 1 5 0 1 0 2 234 232 -65 72 -_sim_empty -218 -1 0.050000000000000003 0 0 -0.05000000000000001 -49 5 220 100 98 -56 5 220 111 106 -220 1 5 0 1 0 2 236 234 -49 56 -_sim_empty -220 -1 0.050000000000000003 -0.05000000000000001 0 0 -57 5 222 116 100 -64 5 222 127 111 -222 1 5 0 1 0 2 238 236 -57 64 -_sim_empty -222 -1 0.050000000000000003 0 0 0.050000000000000003 -1 6 88 1 0 2 -4 58 1 0 80 2 0 9 3 1 77 4 1 2 6 88 0 0 1 -4 77 5 0 9 6 0 80 7 1 58 8 1 88 2 5 0 2 0 -1 1 - - 1 2 - -0 -_sim_empty -88 -1 -0.099988761031994958 -0.028741887714127959 -0.049988761031994955 0.071258112285872047 0.050000000000000003 -0 -3 6 86 1 0 4 -4 56 9 0 79 10 0 11 11 1 80 2 1 4 6 86 0 0 3 -4 80 7 0 11 14 0 79 15 1 56 16 1 86 2 5 0 2 0 -1 3 - - 1 4 - -0 -_sim_empty -86 -1 -0.099988761031994958 -0.028741887714127959 0.050000000000000003 0.071258112285872047 0.049988761031994955 -0 -5 6 84 1 0 6 -4 54 17 0 78 18 0 13 19 1 79 10 1 6 6 84 0 0 5 -4 79 15 0 13 22 0 78 23 1 54 24 1 84 2 5 0 2 0 -1 5 - - 1 6 - -0 -_sim_empty -84 -1 -0.099988761031994958 -0.028741887714127959 0.049988761031994955 0.071258112285872047 -0.050000000000000017 -0 -7 6 82 1 0 8 -4 52 25 0 77 4 0 15 27 1 78 18 1 8 6 82 0 0 7 -4 78 23 0 15 30 0 77 5 1 52 32 1 82 2 5 0 2 0 -1 7 - - 1 8 - -0 -_sim_empty -82 -1 -0.099988761031994958 -0.028741887714127959 -0.05000000000000001 0.071258112285872047 -0.049988761031994955 -0 -9 6 1 1 0 10 -4 9 3 0 11 11 0 13 19 0 15 27 0 10 6 1 0 0 9 -4 15 30 1 13 22 1 11 14 1 9 6 1 1 2 5 0 2 0 -1 9 - - 1 10 - -0 -_sim_empty -1 -1 -0.049988761031994955 -0.0074837754282559149 -0.0074837754282559149 0.10000000000000001 0.049988761031994955 -0 -11 6 48 1 0 12 -4 58 41 1 52 42 1 54 43 1 56 44 1 12 6 48 0 0 11 -4 56 16 0 54 24 0 52 32 0 58 8 0 48 2 5 0 2 0 -1 11 - - 1 12 - -0 -_sim_empty -48 -1 -0.049988761031994955 -0.0074837754282559149 -0.0074837754282559149 0.050000000000000003 0.049988761031994955 -0 -13 6 175 1 0 14 -4 220 49 0 200 50 0 52 25 1 202 52 1 14 6 175 0 0 13 -4 202 53 0 52 42 0 200 55 1 220 56 1 175 2 5 0 2 0 -1 13 - - 1 14 - -0 -_sim_empty -175 -1 -0.099988761031994958 -0.028741887714127959 -0.05000000000000001 0.021258112285872044 -0.049988761031994955 -0 -15 6 170 1 0 16 -4 222 57 0 206 58 0 58 1 1 200 50 1 16 6 170 0 0 15 -4 200 55 0 58 41 0 206 63 1 222 64 1 170 2 5 0 2 0 -1 15 - - 1 16 - -0 -_sim_empty -170 -1 -0.099988761031994958 -0.028741887714127959 -0.049988761031994955 0.021258112285872044 0.050000000000000003 -0 -17 6 180 1 0 18 -4 218 65 0 202 52 0 54 17 1 204 68 1 18 6 180 0 0 17 -4 204 69 0 54 43 0 202 53 1 218 72 1 180 2 5 0 2 0 -1 17 - - 1 18 - -0 -_sim_empty -180 -1 -0.099988761031994958 -0.028741887714127959 0.049988761031994955 0.021258112285872044 -0.050000000000000017 -0 -19 6 192 1 0 20 -4 222 57 1 220 49 1 218 65 1 216 76 1 20 6 192 0 0 19 -4 216 77 0 218 72 0 220 56 0 222 64 0 192 2 5 0 2 0 -1 19 - - 1 20 - -0 -_sim_empty -192 -1 -0.049988761031994955 -0.0074837754282559149 -0.0074837754282559149 0 0.049988761031994955 -0 -21 6 185 1 0 22 -4 216 76 0 204 68 0 56 9 1 206 58 1 22 6 185 0 0 21 -4 206 63 0 56 44 0 204 69 1 216 77 1 185 2 5 0 2 0 -1 21 - - 1 22 - -0 -_sim_empty -185 -1 -0.099988761031994958 -0.028741887714127959 0.050000000000000003 0.021258112285872044 0.049988761031994955 -0 -1 8 98 6 -88 0 86 0 84 0 82 0 1 0 48 0 98 3 5 0 3 0 1 -1 -0 -0 -_sim_empty -98 -2 8 198 6 -48 1 175 0 170 0 180 0 192 0 185 0 198 3 5 0 3 0 1 -2 -0 -0 -_sim_empty -198 -0 -1 -4 8 199 10 -88 1 82 1 84 1 86 1 1 1 185 1 170 1 175 1 180 1 192 1 199 3 8 0 303 0 1 -4 -0 -0 -_sim_empty --1 -0 -0 -1 -0 -1 -0 -1 - auxmm 2 -0 - attributes 10 -AttDBVersion 10 8 -0 1 0 16 17 -1 2 3 -0 -9 Smoothing -0 -0 0 1 -0 -0 -1 1 -0 -2 -1 2 4 -0 -13 SmoothingType -0 -0 0 1 -0 -0 -1 1 -0 -0 -1 2 5 -0 -12 Optimization -0 -0 0 1 -0 -0 -1 1 -0 -1 -1 2 6 -0 -16 FixIntersections -0 -0 0 1 -0 -0 -1 1 -0 -1 -1 2 7 -0 -16 EnforceGradation -0 -0 0 1 -0 -0 -1 1 -0 -0 -1 3 8 -0 -17 FaceRotationLimit -0 -0 0 1 -0 -0 -2 1 -0 -15 -1 7 2 -0 -13 SurfaceMesher -0 -0 0 1 -0 -6 3 4 5 6 7 8 -1 2 10 -0 -11 EnforceSize -0 -0 0 1 -0 -0 -1 1 -0 -0 -1 2 11 -0 -9 Smoothing -0 -0 0 1 -0 -0 -1 1 -0 -1 -1 2 12 -0 -13 SmoothingType -0 -0 0 1 -0 -0 -1 1 -0 -0 -1 2 13 -0 -12 Optimization -0 -0 0 1 -0 -0 -1 1 -0 -1 -1 7 9 -0 -12 VolumeMesher -0 -0 0 1 -0 -4 10 11 12 13 -1 10 14 -0 -9 parasolid -0 -0 0 1 -0 -0 -1 -4 -57 file:///lore/granzb/albany-ws/examples/Heat3DSim/cube.smd27 model.nonmanifold.parasolid6 # 1 0 0 1 3 15 -9 mesh size -8 MeshSize -8 Relative -0 0 1 -0 -0 -2 -1 -0 -4 0.75 -1 3 16 -9 mesh curv -8 MeshCurv -8 Relative -0 0 1 -0 -0 -2 1 -0 -0.10000000000000001 -1 3 17 -13 min curv size -11 MinCurvSize -8 Relative -0 0 1 -0 -0 -2 1 -0 -0.01 -3 1 1 -11 Mesh case 1 -7 Meshing -0 -2 0 1 -0 -5 2 9 15 16 17 -14 -3 3 -1 -1 -9 1 1 15 -2 -1 -9 1 1 16 -3 -2 -3 98 3 198 1 17 - -3 -smd 8 -auxmm 7788 -attributes 7805 - -
-4 -57 file:///lore/granzb/albany-ws/examples/Heat3DSim/cube.smd27 model.nonmanifold.parasolid6 # 1 0 0 -0 -1 -6 native4 -14 ./cube_nat.x_t21 nativeModel.parasolid6 # 1 0 0 -
-8907 8959 diff --git a/tests/small/Heat3DSim/cube.xmt_txt b/tests/small/Heat3DSim/cube.xmt_txt deleted file mode 100644 index d18ae38baa..0000000000 --- a/tests/small/Heat3DSim/cube.xmt_txt +++ /dev/null @@ -1,116 +0,0 @@ -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=parasolid_acceptance_tests; -SITE=unknown; -USER=unknown; -FORMAT=text; -GUISE=transmit; -KEY=test_non_man; -FILE=test_non_man.xmt_txt; -DATE=unknown; -**PART2; -SCH=SCH_2400133_20000; -USFLD_SIZE=1; -**PART3; -**END_OF_HEADER***************************************************************** -T51 : TRANSMIT FILE created by modeller version 240013323 SCH_2400133_20000_1300 -6186 1 12 27 CCCCCCCCCCCCCCCCCCCCCCCA16 index_map_offset0 0 1 dA9 index_map82 0 - A17 node_id_index_map82 0 A20 schema_embedding_map82 0 Z1 278 2 3 0 0 0 0 1e3 1 -e-8 0 0 0 1 0 6 1 0 4 5 6 7 8 9 0 0 0 0 0 81 255 1 2 165 10 1 11 0 0 0 0 0 70 11 - CI9 list_type0 0 1 uI10 notransmit0 0 1 lCCCDCCDI12 finger_index0 0 1 dI12 fing -er_block1012 0 CZ3 0 4 T1 0 0 3 20 1 12 12 0 50 255 4 240 0 13 14 0 0 +.05 .05 . -05 0 0 1 1 0 0 0 30 255 5 246 0 15 16 0 0 +.05 .05 .05 0 -1 0 0 29 255 6 258 0 1 -7 18 0 .05 0 -.05 0 19 255 7 278 0 1 19 0 20 V0 16 255 8 80 0 ?21 0 22 23 0 0 1 - 0 18 255 9 26 0 24 0 25 26 ?1 0 17 255 24 0 27 28 29 9 30 31 0 32 -0 18 25 23 0 - 33 9 34 35 ?1 0 29 26 28 0 9 35 36 -.05 .1 .05 0 29 35 25 0 25 37 26 -.05 .1 -. -05 0 29 36 76 0 38 26 39 .05 .05 .05 0 18 38 66 0 40 41 17 36 ?1 0 29 39 75 0 41 - 36 42 .05 .05 -.05 0 18 41 64 0 43 44 38 39 ?1 0 29 42 74 0 44 39 45 -.05 .05 - -.05 0 18 44 62 0 46 47 41 42 ?1 0 29 45 73 0 47 42 48 -.05 .05 .05 0 18 47 60 0 - 49 50 44 45 ?1 0 29 48 261 0 51 45 52 .05 0 .05 0 18 51 238 0 53 54 0 48 ?1 0 2 -9 52 260 0 54 48 18 -.05 0 .05 0 18 54 236 0 55 56 51 52 ?1 0 29 18 259 0 56 52 - 6 -.05 0 -.05 0 18 56 234 0 57 17 54 18 ?1 0 17 57 0 58 59 46 56 60 61 0 62 +0 - 18 17 232 0 63 38 56 6 ?1 0 17 63 0 64 62 43 17 65 66 0 67 +0 15 255 64 184 0 6 -2 68 0 0 17 62 0 64 60 63 56 69 70 0 71 -0 17 43 0 64 63 60 41 72 73 0 65 +0 17 - 65 0 74 40 67 41 63 66 0 75 -0 16 66 204 0 ?63 61 15 76 0 0 1 0 17 67 0 74 65 5 -3 17 77 78 0 69 -0 15 74 189 0 67 79 0 0 17 53 0 74 67 40 51 80 15 0 77 +0 17 77 - 0 81 82 69 51 67 78 0 83 +0 16 78 216 0 ?77 15 70 84 0 0 1 0 17 69 0 81 77 71 1 -7 62 70 0 0 +0 15 81 196 0 82 85 0 0 17 71 0 81 69 82 56 59 86 0 0 +0 16 70 218 - 0 ?69 78 86 87 0 0 1 0 16 86 220 0 ?71 70 88 89 0 0 1 0 30 87 251 0 70 89 84 0 - +-.05 0 -.05 1 0 -1387778780781444e-31 0 30 89 252 0 86 90 87 0 +-.05 0 .05 -69 -3889390390723e-31 0 -1 0 30 84 250 0 78 87 76 0 +.05 0 -.05 0 0 1 0 30 76 249 0 - 66 84 91 0 +.05 .05 -.05 0 -1 0 0 30 91 248 0 61 76 16 0 +-.05 .05 -.05 0 -1 0 - 0 16 61 202 0 ?57 92 66 91 0 0 1 0 30 16 247 0 92 91 5 0 +-.05 .05 .05 0 -1 0 0 - 16 92 200 0 ?55 93 61 16 0 0 1 0 17 55 0 94 83 49 54 95 92 0 59 +0 16 93 58 0 ? -49 96 92 97 0 0 1 0 17 49 0 94 55 80 47 98 93 0 95 +0 16 96 56 0 ?40 73 93 99 0 - 0 1 0 30 97 72 0 93 100 99 0 +.05 .05 .05 -1 0 0 0 30 100 16 0 101 102 97 0 +-. -05 .1 .05 -693889390390723e-31 0 -1 0 30 99 71 0 96 97 103 0 +.05 .05 -.05 0 0 1 - 0 30 103 70 0 73 99 104 0 +-.05 .05 -.05 1 0 -1387778780781444e-31 0 16 73 54 0 - ?43 105 96 103 0 0 1 0 30 104 69 0 105 103 106 0 +-.05 .05 .05 -693889390390723 -e-31 0 -1 0 16 105 52 0 ?46 107 73 104 0 0 1 0 30 106 89 0 31 104 108 0 +-.05 .1 - .05 0 -1 0 0 16 31 77 0 ?30 109 101 106 0 0 1 0 30 108 90 0 109 106 110 0 +-.05 - .1 -.05 0 -1 0 0 16 109 78 0 ?111 22 31 108 0 0 1 0 30 110 91 0 22 108 23 0 +.0 -5 .1 -.05 0 -1 0 0 16 22 79 0 ?75 8 109 110 0 0 1 0 30 23 92 0 8 110 90 0 +.05 . -1 .05 0 -1 0 0 30 90 253 0 88 23 89 0 +.05 0 .05 -1 0 0 0 16 88 222 0 ?82 86 0 9 -0 0 0 1 0 17 82 0 81 71 77 54 83 88 0 0 +0 17 83 0 94 80 55 51 82 88 0 0 -0 15 9 -4 174 0 83 13 0 0 17 80 0 94 49 83 38 53 15 0 21 -0 16 15 206 0 ?53 66 78 5 0 0 - 1 0 17 21 0 112 113 114 38 115 8 0 98 +0 15 112 85 0 113 116 0 0 17 113 0 112 1 -17 21 41 118 96 0 0 -0 17 114 0 112 21 117 50 119 120 0 0 +0 17 115 0 121 32 98 - 50 21 8 0 122 -0 17 98 0 121 115 30 38 123 93 0 0 -0 15 121 87 0 98 124 0 0 17 - 30 0 121 98 32 47 24 31 0 29 +0 17 123 0 125 126 118 47 49 93 0 0 +0 15 125 51 - 0 123 127 0 0 17 126 0 125 128 123 44 46 105 0 0 +0 17 118 0 125 123 128 38 40 - 96 0 0 +0 17 128 0 125 118 126 41 43 73 0 0 +0 17 40 0 74 53 65 38 113 96 0 80 - +0 17 46 0 58 57 95 44 29 105 0 60 +0 15 58 179 0 59 129 0 0 17 95 0 58 46 59 4 -7 55 92 0 30 -0 17 29 0 27 24 111 47 126 105 0 0 -0 17 60 0 64 43 62 44 57 61 0 - 111 -0 17 111 0 27 29 28 44 33 109 0 72 +0 15 27 81 0 29 130 0 0 17 28 0 27 111 - 24 25 131 101 0 0 +0 17 33 0 132 133 72 25 111 109 0 134 -0 17 72 0 132 33 75 4 -4 128 73 0 0 -0 15 132 83 0 72 135 0 0 17 75 0 132 72 133 41 117 22 0 113 +0 17 - 133 0 132 75 33 34 134 136 0 0 +0 17 117 0 112 114 113 34 75 22 0 119 -0 18 34 - 20 0 117 25 50 37 ?1 0 17 119 0 137 134 122 34 114 120 0 133 -0 15 137 8 0 122 - 138 0 0 17 134 0 137 131 119 25 133 136 0 28 -0 17 122 0 137 119 131 50 32 107 - 0 114 -0 16 120 11 0 ?114 136 107 139 0 0 1 0 16 136 13 0 ?133 101 120 102 0 0 - 1 0 16 107 9 0 ?32 120 105 140 0 0 1 0 30 139 12 0 120 140 102 0 +.05 .1 -.05 0 - 0 1 0 30 140 10 0 107 0 139 0 +.05 .1 .05 -1 0 0 0 30 102 14 0 136 139 100 0 +- -.05 .1 -.05 1 0 -1387778780781444e-31 0 17 32 0 121 30 115 9 122 107 0 131 +0 17 - 131 0 137 122 134 9 28 101 0 0 -0 16 101 15 0 ?28 31 136 100 0 0 1 0 18 50 17 0 - 115 34 47 141 ?1 0 29 141 19 0 50 0 37 .05 .1 .05 0 29 37 22 0 34 141 35 .05 .1 - -.05 0 14 255 138 1 142 ?127 130 137 143 144 -0 0 0 130 20 0 81 1 142 123 145 1 -38 0 0 146 147 148 0 14 127 48 147 ?0 138 125 143 149 +0 0 0 0 150 0 14 130 82 1 -46 ?138 135 27 143 151 +0 0 138 135 20 0 13 255 143 97 0 0 0 124 0 0 19 0 0 50 1 -44 2 0 138 0 149 0 +0 .1 0 0 -1 0 0 0 -1 0 13 20 169 0 0 0 0 0 0 7 13 0 14 13 17 -0 152 ?68 129 94 150 4 +0 0 129 0 20 0 81 1 152 173 145 13 0 0 147 153 154 0 14 - 68 180 155 ?85 13 64 150 156 +0 0 79 129 20 0 14 129 175 153 ?13 0 58 150 14 +0 - 0 68 13 20 0 13 150 267 0 0 0 129 0 0 157 127 0 19 157 198 0 1 0 19 150 S0 19 1 -9 98 0 1 157 7 143 S0 81 1 153 178 145 129 0 0 152 155 158 0 50 14 241 0 129 156 - 4 0 +-.05 .05 .05 -1 0 693889390390723e-31 693889390390723e-31 0 1 0 50 156 242 - 0 68 159 14 0 +-.05 .05 -.05 -1387778780781444e-31 0 -1 -1 0 1387778780781444e- -31 0 50 159 243 0 79 160 156 0 +.05 .05 -.05 1 0 0 0 0 -1 0 14 79 185 161 ?0 85 - 74 150 159 +0 0 85 68 20 0 50 160 244 0 85 162 159 0 +0 0 0 0 -1 0 0 0 -1 0 14 - 85 192 163 ?79 68 81 150 160 +0 0 124 79 20 0 50 162 96 0 124 164 160 0 +.05 .1 - .05 0 0 1 1 0 0 0 14 124 88 165 ?116 0 121 143 162 +0 0 116 85 20 0 50 164 95 0 - 116 166 162 0 +.05 .1 -.05 1 0 0 0 0 -1 0 14 116 86 167 ?135 124 112 143 164 +0 - 0 135 124 20 0 50 166 94 0 135 151 164 0 +-.05 .1 -.05 -1387778780781444e-31 0 - -1 -1 0 1387778780781444e-31 0 14 135 84 168 ?130 116 132 143 166 +0 0 130 116 - 20 0 50 151 93 0 130 149 166 0 +-.05 .1 .05 -1 0 693889390390723e-31 6938893903 -90723e-31 0 1 0 50 149 68 0 127 144 151 0 +0 .05 0 0 -1 0 0 0 -1 0 81 1 168 121 - 145 135 0 0 167 146 169 0 80 255 1 145 0 170 8001 0 0 0 0 3 5 0 0 0 FFFFTFTFFFF -FFF2 0 81 1 167 120 145 116 0 0 165 168 171 0 81 1 146 122 145 130 0 0 168 142 1 -72 0 83 255 3 169 .5960784 .6666667 .6862745 0 83 3 172 .5960784 .6666667 .68627 -45 0 81 1 165 119 145 124 0 0 0 167 173 0 83 3 171 .5960784 .6666667 .6862745 0 - 83 3 173 .5960784 .6666667 .6862745 0 79 255 15 170 SDL/TYSA_COLOUR0 81 1 163 1 -95 145 85 0 0 161 0 174 0 81 1 161 188 145 79 0 0 155 163 175 0 83 3 174 .596078 -4 .6666667 .6862745 0 81 1 155 183 145 68 0 0 153 161 176 0 83 3 175 .5960784 .6 -666667 .6862745 0 83 3 176 .5960784 .6666667 .6862745 0 83 3 158 .5960784 .66666 -67 .6862745 0 81 1 147 124 145 127 0 0 142 152 177 0 83 3 154 .5960784 .6666667 - .6862745 0 83 3 177 .5960784 .6666667 .6862745 0 83 3 148 .5960784 .6666667 .68 -62745 0 17 59 0 58 95 57 54 71 86 0 82 -0 74 4 CI16 index_map_offset0 0 1 dCCZ20 - 12 3 0 0 11 163 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 81 2 11 117 178 1 0 2 0 0 - 179 180 0 80 2 178 181 182 8004 0 0 0 0 3 5 0 0 0 FFTFFFFFFFFFFF2 3 0 83 1 179 - 7830.64 0 84 255 8 180 Kg/Cu M 0 79 16 182 SDL/TYSA_DENSITY0 80 1 10 183 184 90 -00 0 0 0 0 3 6 0 0 0 FFTFTFTTFFFFTF9 0 79 23 184 Sim_NM_AssemblyModelAtt0 1 0 diff --git a/tests/small/Heat3DSim/cube_nat.x_t b/tests/small/Heat3DSim/cube_nat.x_t deleted file mode 100644 index 715b4fa020..0000000000 --- a/tests/small/Heat3DSim/cube_nat.x_t +++ /dev/null @@ -1,117 +0,0 @@ -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=parasolid_acceptance_tests; -SITE=unknown; -USER=unknown; -FORMAT=text; -GUISE=transmit; -KEY=/lore/granzb/albany-ws/examples/Heat3DSim/cube_nat.x_t; -FILE=/lore/granzb/albany-ws/examples/Heat3DSim/cube_nat.x_t; -DATE=unknown; -**PART2; -SCH=SCH_2600217_25001; -USFLD_SIZE=1; -**PART3; -**END_OF_HEADER***************************************************************** -T51 : TRANSMIT FILE created by modeller version 260021723 SCH_2600217_25001_1300 -6189 1 12 29 CCCCCCCCCCCCCDI5 owner1040 0 CCCCCCCCCA16 index_map_offset0 0 1 dA9 - index_map82 0 A17 node_id_index_map82 0 A20 schema_embedding_map82 0 A5 child12 - 0 A14 lowest_node_id0 0 1 dZ1 278 2 3 0 0 0 0 1e3 1e-8 0 0 0 1 0 6 1 0 4 5 6 7 - 8 9 0 0 0 0 0 0 0 81 255 1 2 165 10 1 11 0 0 0 0 0 70 11 CI9 list_type0 0 1 uI1 -0 notransmit0 0 1 lCCCDCCDI12 finger_index0 0 1 dI12 finger_block1012 0 CZ3 0 4 - T1 0 0 3 20 1 12 12 0 50 255 4 240 0 13 14 0 0 +.05 .05 .05 0 0 1 1 0 0 0 30 25 -5 5 246 0 15 16 0 0 +.05 .05 .05 0 -1 0 0 29 255 6 258 0 17 18 0 .05 0 -.05 0 19 - 8 CCCCCCCA5 owner12 0 Z7 278 0 1 19 0 20 V0 0 16 255 8 80 0 ?21 0 22 23 0 0 1 0 - 18 255 9 26 0 24 0 25 26 ?1 0 17 255 24 0 27 28 29 9 30 31 0 32 -0 18 25 23 0 3 -3 9 34 35 ?1 0 29 26 28 0 9 35 36 -.05 .1 .05 0 29 35 25 0 25 37 26 -.05 .1 -.05 - 0 29 36 76 0 38 26 39 .05 .05 .05 0 18 38 66 0 40 41 17 36 ?1 0 29 39 75 0 41 3 -6 42 .05 .05 -.05 0 18 41 64 0 43 44 38 39 ?1 0 29 42 74 0 44 39 45 -.05 .05 -.0 -5 0 18 44 62 0 46 47 41 42 ?1 0 29 45 73 0 47 42 48 -.05 .05 .05 0 18 47 60 0 49 - 50 44 45 ?1 0 29 48 261 0 51 45 52 .05 0 .05 0 18 51 238 0 53 54 0 48 ?1 0 29 5 -2 260 0 54 48 18 -.05 0 .05 0 18 54 236 0 55 56 51 52 ?1 0 29 18 259 0 56 52 6 - -.05 0 -.05 0 18 56 234 0 57 17 54 18 ?1 0 17 57 0 58 59 46 56 60 61 0 62 +0 18 1 -7 232 0 63 38 56 6 ?1 0 17 63 0 64 62 43 17 65 66 0 67 +0 15 255 64 184 0 62 68 - 0 0 17 62 0 64 60 63 56 69 70 0 71 -0 17 43 0 64 63 60 41 72 73 0 65 +0 17 65 0 - 74 40 67 41 63 66 0 75 -0 16 66 204 0 ?63 61 15 76 0 0 1 0 17 67 0 74 65 53 17 - 77 78 0 69 -0 15 74 189 0 67 79 0 0 17 53 0 74 67 40 51 80 15 0 77 +0 17 77 0 8 -1 82 69 51 67 78 0 83 +0 16 78 216 0 ?77 15 70 84 0 0 1 0 17 69 0 81 77 71 17 62 - 70 0 0 +0 15 81 196 0 82 85 0 0 17 71 0 81 69 82 56 59 86 0 0 +0 16 70 218 0 ?6 -9 78 86 87 0 0 1 0 16 86 220 0 ?71 70 88 89 0 0 1 0 30 87 251 0 70 89 84 0 +-.05 - 0 -.05 1 0 -1387778780781444e-31 0 30 89 252 0 86 90 87 0 +-.05 0 .05 -69388939 -0390723e-31 0 -1 0 30 84 250 0 78 87 76 0 +.05 0 -.05 0 0 1 0 30 76 249 0 66 84 - 91 0 +.05 .05 -.05 0 -1 0 0 30 91 248 0 61 76 16 0 +-.05 .05 -.05 0 -1 0 0 16 6 -1 202 0 ?57 92 66 91 0 0 1 0 30 16 247 0 92 91 5 0 +-.05 .05 .05 0 -1 0 0 16 92 - 200 0 ?55 93 61 16 0 0 1 0 17 55 0 94 83 49 54 95 92 0 59 +0 16 93 58 0 ?49 96 - 92 97 0 0 1 0 17 49 0 94 55 80 47 98 93 0 95 +0 16 96 56 0 ?40 73 93 99 0 0 1 0 - 30 97 72 0 93 100 99 0 +.05 .05 .05 -1 0 0 0 30 100 16 0 101 102 97 0 +-.05 .1 - .05 -693889390390723e-31 0 -1 0 30 99 71 0 96 97 103 0 +.05 .05 -.05 0 0 1 0 30 - 103 70 0 73 99 104 0 +-.05 .05 -.05 1 0 -1387778780781444e-31 0 16 73 54 0 ?43 - 105 96 103 0 0 1 0 30 104 69 0 105 103 106 0 +-.05 .05 .05 -693889390390723e-31 - 0 -1 0 16 105 52 0 ?46 107 73 104 0 0 1 0 30 106 89 0 31 104 108 0 +-.05 .1 .05 - 0 -1 0 0 16 31 77 0 ?30 109 101 106 0 0 1 0 30 108 90 0 109 106 110 0 +-.05 .1 - -.05 0 -1 0 0 16 109 78 0 ?111 22 31 108 0 0 1 0 30 110 91 0 22 108 23 0 +.05 . -1 -.05 0 -1 0 0 16 22 79 0 ?75 8 109 110 0 0 1 0 30 23 92 0 8 110 90 0 +.05 .1 . -05 0 -1 0 0 30 90 253 0 88 23 89 0 +.05 0 .05 -1 0 0 0 16 88 222 0 ?82 86 0 90 0 - 0 1 0 17 82 0 81 71 77 54 83 88 0 0 +0 17 83 0 94 80 55 51 82 88 0 0 -0 15 94 1 -74 0 83 13 0 0 17 80 0 94 49 83 38 53 15 0 21 -0 16 15 206 0 ?53 66 78 5 0 0 1 0 - 17 21 0 112 113 114 38 115 8 0 98 +0 15 112 85 0 113 116 0 0 17 113 0 112 117 2 -1 41 118 96 0 0 -0 17 114 0 112 21 117 50 119 120 0 0 +0 17 115 0 121 32 98 50 2 -1 8 0 122 -0 17 98 0 121 115 30 38 123 93 0 0 -0 15 121 87 0 98 124 0 0 17 30 0 - 121 98 32 47 24 31 0 29 +0 17 123 0 125 126 118 47 49 93 0 0 +0 15 125 51 0 123 - 127 0 0 17 126 0 125 128 123 44 46 105 0 0 +0 17 118 0 125 123 128 38 40 96 0 0 - +0 17 128 0 125 118 126 41 43 73 0 0 +0 17 40 0 74 53 65 38 113 96 0 80 +0 17 4 -6 0 58 57 95 44 29 105 0 60 +0 15 58 179 0 59 129 0 0 17 95 0 58 46 59 47 55 92 - 0 30 -0 17 29 0 27 24 111 47 126 105 0 0 -0 17 60 0 64 43 62 44 57 61 0 111 -0 - 17 111 0 27 29 28 44 33 109 0 72 +0 15 27 81 0 29 130 0 0 17 28 0 27 111 24 25 - 131 101 0 0 +0 17 33 0 132 133 72 25 111 109 0 134 -0 17 72 0 132 33 75 44 128 - 73 0 0 -0 15 132 83 0 72 135 0 0 17 75 0 132 72 133 41 117 22 0 113 +0 17 133 0 - 132 75 33 34 134 136 0 0 +0 17 117 0 112 114 113 34 75 22 0 119 -0 18 34 20 0 1 -17 25 50 37 ?1 0 17 119 0 137 134 122 34 114 120 0 133 -0 15 137 8 0 122 138 0 0 - 17 134 0 137 131 119 25 133 136 0 28 -0 17 122 0 137 119 131 50 32 107 0 114 -0 - 16 120 11 0 ?114 136 107 139 0 0 1 0 16 136 13 0 ?133 101 120 102 0 0 1 0 16 10 -7 9 0 ?32 120 105 140 0 0 1 0 30 139 12 0 120 140 102 0 +.05 .1 -.05 0 0 1 0 30 - 140 10 0 107 0 139 0 +.05 .1 .05 -1 0 0 0 30 102 14 0 136 139 100 0 +-.05 .1 -. -05 1 0 -1387778780781444e-31 0 17 32 0 121 30 115 9 122 107 0 131 +0 17 131 0 13 -7 122 134 9 28 101 0 0 -0 16 101 15 0 ?28 31 136 100 0 0 1 0 18 50 17 0 115 34 4 -7 141 ?1 0 29 141 19 0 50 0 37 .05 .1 .05 0 29 37 22 0 34 141 35 .05 .1 -.05 0 1 -4 255 138 1 142 ?127 130 137 143 144 -0 0 0 130 20 0 81 1 142 123 145 138 0 0 14 -6 147 148 0 14 127 48 147 ?0 138 125 143 149 +0 0 0 0 150 0 14 130 82 146 ?138 1 -35 27 143 151 +0 0 138 135 20 0 13 255 143 97 0 0 0 124 0 0 19 0 0 50 144 2 0 13 -8 0 149 0 +0 .1 0 0 -1 0 0 0 -1 0 13 20 169 0 0 0 0 0 0 7 13 0 14 13 170 152 ?68 - 129 94 150 4 +0 0 129 0 20 0 81 1 152 173 145 13 0 0 147 153 154 0 14 68 180 15 -5 ?85 13 64 150 156 +0 0 79 129 20 0 14 129 175 153 ?13 0 58 150 14 +0 0 68 13 2 -0 0 13 150 267 0 0 0 129 0 0 157 127 0 19 157 198 0 1 0 19 150 S0 0 19 19 98 0 1 - 157 7 143 S0 0 81 1 153 178 145 129 0 0 152 155 158 0 50 14 241 0 129 156 4 0 + --.05 .05 .05 -1 0 693889390390723e-31 693889390390723e-31 0 1 0 50 156 242 0 68 - 159 14 0 +-.05 .05 -.05 -1387778780781444e-31 0 -1 -1 0 1387778780781444e-31 0 - 50 159 243 0 79 160 156 0 +.05 .05 -.05 1 0 0 0 0 -1 0 14 79 185 161 ?0 85 74 1 -50 159 +0 0 85 68 20 0 50 160 244 0 85 162 159 0 +0 0 0 0 -1 0 0 0 -1 0 14 85 19 -2 163 ?79 68 81 150 160 +0 0 124 79 20 0 50 162 96 0 124 164 160 0 +.05 .1 .05 0 - 0 1 1 0 0 0 14 124 88 165 ?116 0 121 143 162 +0 0 116 85 20 0 50 164 95 0 116 1 -66 162 0 +.05 .1 -.05 1 0 0 0 0 -1 0 14 116 86 167 ?135 124 112 143 164 +0 0 135 - 124 20 0 50 166 94 0 135 151 164 0 +-.05 .1 -.05 -1387778780781444e-31 0 -1 -1 - 0 1387778780781444e-31 0 14 135 84 168 ?130 116 132 143 166 +0 0 130 116 20 0 5 -0 151 93 0 130 149 166 0 +-.05 .1 .05 -1 0 693889390390723e-31 693889390390723e- -31 0 1 0 50 149 68 0 127 144 151 0 +0 .05 0 0 -1 0 0 0 -1 0 81 1 168 121 145 135 - 0 0 167 146 169 0 80 255 1 145 0 170 8001 0 0 0 0 3 5 0 0 0 FFFFTFTFFFFFFF2 0 8 -1 1 167 120 145 116 0 0 165 168 171 0 81 1 146 122 145 130 0 0 168 142 172 0 83 - 255 3 169 .5960784 .6666667 .6862745 0 83 3 172 .5960784 .6666667 .6862745 0 81 - 1 165 119 145 124 0 0 0 167 173 0 83 3 171 .5960784 .6666667 .6862745 0 83 3 17 -3 .5960784 .6666667 .6862745 0 79 255 15 170 SDL/TYSA_COLOUR0 81 1 163 195 145 8 -5 0 0 161 0 174 0 81 1 161 188 145 79 0 0 155 163 175 0 83 3 174 .5960784 .66666 -67 .6862745 0 81 1 155 183 145 68 0 0 153 161 176 0 83 3 175 .5960784 .6666667 . -6862745 0 83 3 176 .5960784 .6666667 .6862745 0 83 3 158 .5960784 .6666667 .6862 -745 0 81 1 147 124 145 127 0 0 142 152 177 0 83 3 154 .5960784 .6666667 .6862745 - 0 83 3 177 .5960784 .6666667 .6862745 0 83 3 148 .5960784 .6666667 .6862745 0 1 -7 59 0 58 95 57 54 71 86 0 82 -0 74 4 CI16 index_map_offset0 0 1 dCCZ20 12 3 0 0 - 11 163 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 81 2 11 117 178 1 0 2 0 0 179 180 - 0 80 2 178 181 182 8004 0 0 0 0 3 5 0 0 0 FFTFFFFFFFFFFF2 3 0 83 1 179 7830.64 - 0 84 255 8 180 Kg/Cu M 0 79 16 182 SDL/TYSA_DENSITY0 80 1 10 183 184 9000 0 0 0 - 0 3 6 0 0 0 FFTFTFTTFFFFTF9 0 79 23 184 Sim_NM_AssemblyModelAtt0 1 0 diff --git a/tests/small/Heat3DSim/inputSerialT.yaml b/tests/small/Heat3DSim/inputSerialT.yaml deleted file mode 100644 index 78b1f7a572..0000000000 --- a/tests/small/Heat3DSim/inputSerialT.yaml +++ /dev/null @@ -1,88 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Problem: - Name: Heat 3D - Dirichlet BCs: - DBC on NS Node_Set_1 for DOF T: 1.00000000000000000e+00 - DBC on NS Node_Set_2 for DOF T: 0.00000000000000000e+00 - Parameters: - Number Of Parameters: 0 - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - Method: Sim - Sim Input File Name: cube-serial.sms - Sim Model Input File Name: cube.smd - Sim Output File Name: serial_out.sms - Element Block Associations: [['98', '198'], [Element_Block_98, Element_Block_198]] - Node Set Associations: [['1', '192'], [Node_Set_1, Node_Set_2]] - Piro: - LOCA: - Bifurcation: {} - Constraints: {} - Predictor: - First Step Predictor: {} - Last Step Predictor: {} - Step Size: {} - Stepper: - Eigensolver: {} - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 1 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Absolute Tolerance: 1.00000000000000008e-05 - Test Value: 5.09523809524000004e-01 - Relative Tolerance: 1.00000000000000004e-04 -... diff --git a/tests/small/HeatEigenvalues/CMakeLists.txt b/tests/small/HeatEigenvalues/CMakeLists.txt deleted file mode 100644 index 3cf50b722c..0000000000 --- a/tests/small/HeatEigenvalues/CMakeLists.txt +++ /dev/null @@ -1,24 +0,0 @@ -# Name the test with the directory name -get_filename_component(testNameRoot ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -#################################### -### Main tests ### -#################################### - -set(testName ${testNameRoot}) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - - add_test(${testName}_Epetra ${Albany.exe} input.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Basic;Epetra;Forward") -endif() - -if (ALBANY_IFPACK2) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - - add_test(${testName}_Tpetra ${Albany.exe} inputT.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Basic;Tpetra;Forward") -endif () diff --git a/tests/small/HeatEigenvalues/input.yaml b/tests/small/HeatEigenvalues/input.yaml deleted file mode 100644 index 73f8d07d2d..0000000000 --- a/tests/small/HeatEigenvalues/input.yaml +++ /dev/null @@ -1,124 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 1D - Solution Method: Continuation - Compute Sensitivities: true - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 1.00000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 1.00000000000000000e+00 - Source Functions: - Quadratic: - Nonlinear Factor: 0.00000000000000000e+00 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 2 - Scalar 0: - Name: DBC on NS NodeSet0 for DOF T - Scalar 1: - Name: Quadratic Nonlinear Factor - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Average - Discretization: - 1D Elements: 100 - Method: STK1D - Regression For Response 0: - Test Value: 1.00000000000000000e+00 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Values: [5.00000000000000000e-01, 8.25000000000000039e-02] - Piro: - LOCA: - Bifurcation: { } - Constraints: { } - Predictor: - Method: Tangent - Stepper: - Initial Value: 0.00000000000000000e+00 - Continuation Parameter: Quadratic Nonlinear Factor - Max Steps: 0 - Max Value: 1.00000000000000000e+02 - Min Value: 5.00000000000000000e-01 - Compute Eigenvalues: true - Eigensolver: - Method: Anasazi - Operator: Shift-Invert - Num Blocks: 30 - Num Eigenvalues: 3 - Save Eigenvectors: 1 - Block Size: 1 - Maximum Restarts: 0 - Shift: 1.00000000000000000e+01 - Step Size: - Initial Step Size: 1.00000000000000000e+00 - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: NormF - Tolerance: 1.0e-8 - Norm Type: Two Norm - Scale Type: Unscaled - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000006e-09 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 100 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 6 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: true - Parameters: false - Details: false - Linear Solver Details: false - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/HeatEigenvalues/inputT.yaml b/tests/small/HeatEigenvalues/inputT.yaml deleted file mode 100644 index 2f019f41a7..0000000000 --- a/tests/small/HeatEigenvalues/inputT.yaml +++ /dev/null @@ -1,125 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: Heat 1D - Solution Method: Continuation - Compute Sensitivities: true - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 1.00000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 1.00000000000000000e+00 - Source Functions: - Quadratic: - Nonlinear Factor: 0.00000000000000000e+00 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 2 - Scalar 0: - Name: DBC on NS NodeSet0 for DOF T - Scalar 1: - Name: Quadratic Nonlinear Factor - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Average - Discretization: - 1D Elements: 100 - Method: STK1D - Regression For Response 0: - Test Value: 1.00000000000000000e+00 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Values: [5.00000000000000000e-01, 8.25000000000000039e-02] - Piro: - LOCA: - Bifurcation: { } - Constraints: { } - Predictor: - Method: Tangent - Stepper: - Initial Value: 0.00000000000000000e+00 - Continuation Parameter: Quadratic Nonlinear Factor - Max Steps: 0 - Max Value: 1.00000000000000000e+02 - Min Value: 5.00000000000000000e-01 - Return Failed on Reaching Max Steps: false - Compute Eigenvalues: true - Eigensolver: - Method: Anasazi - Operator: Shift-Invert - Num Blocks: 30 - Num Eigenvalues: 3 - Save Eigenvectors: 1 - Block Size: 1 - Maximum Restarts: 0 - Shift: 1.00000000000000000e+01 - Step Size: - Initial Step Size: 1.00000000000000000e+00 - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: NormF - Tolerance: 1.0e-8 - Norm Type: Two Norm - Scale Type: Unscaled - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000006e-09 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 100 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 1 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 6 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: true - Parameters: false - Details: false - Linear Solver Details: false - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/Ioss2D/CMakeLists.txt b/tests/small/Ioss2D/CMakeLists.txt deleted file mode 100644 index 9a054da5cc..0000000000 --- a/tests/small/Ioss2D/CMakeLists.txt +++ /dev/null @@ -1,59 +0,0 @@ -# Name the test with the directory name -get_filename_component(testNameRoot ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -# Copy mesh files from source to binary dir -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/quadQuad.exo - ${CMAKE_CURRENT_BINARY_DIR}/quadQuad.exo COPYONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/quadQuad.exo.4.0 - ${CMAKE_CURRENT_BINARY_DIR}/quadQuad.exo.4.0 COPYONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/quadQuad.exo.4.1 - ${CMAKE_CURRENT_BINARY_DIR}/quadQuad.exo.4.1 COPYONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/quadQuad.exo.4.2 - ${CMAKE_CURRENT_BINARY_DIR}/quadQuad.exo.4.2 COPYONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/quadQuad.exo.4.3 - ${CMAKE_CURRENT_BINARY_DIR}/quadQuad.exo.4.3 COPYONLY) - -#################################### -### Parallel input tests ### -#################################### - -set(testName ${testNameRoot}) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - - add_test(${testName}_Epetra ${Albany.exe} input.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Basic;Epetra;Forward") -endif() -if (ALBANY_IFPACK2) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - - add_test(${testName}_Tpetra ${Albany.exe} inputT.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Basic;Tpetra;Forward") -endif() - -#################################### -### Serial input tests ### -#################################### - -if (ALBANY_PARALELL_EXODUS) - set(testName ${testNameRoot}_SerialInput) - if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_Serial.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_Serial.yaml COPYONLY) - - add_test(${testName}_Epetra ${Albany.exe} input_Serial.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Basic;Epetra;Forward") - endif() - - if (ALBANY_IFPACK2) - - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT_Serial.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT_Serial.yaml COPYONLY) - add_test(${testName}_Tpetra ${Albany.exe} inputT_Serial.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Basic;Tpetra;Forward") - - endif () -endif () diff --git a/tests/small/Ioss2D/input.yaml b/tests/small/Ioss2D/input.yaml deleted file mode 100644 index d4f02fc8e4..0000000000 --- a/tests/small/Ioss2D/input.yaml +++ /dev/null @@ -1,87 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 2D - Dirichlet BCs: - DBC on NS nodelist_15 for DOF T: 1.50000000000000000e+00 - DBC on NS nodelist_16 for DOF T: 1.00000000000000000e+00 - DBC on NS nodelist_17 for DOF T: 1.00000000000000000e+00 - DBC on NS nodelist_18 for DOF T: 1.00000000000000000e+00 - Source Functions: - Quadratic: - Nonlinear Factor: 3.39999999999999991e+00 - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Average - Discretization: - Method: Ioss - Exodus Input File Name: quadQuad.exo - Exodus Output File Name: quadOut.exo - Regression For Response 0: - Test Value: 1.42910000000000004e+00 - Relative Tolerance: 1.00000000000000002e-03 - Piro: - LOCA: - Bifurcation: { } - Constraints: { } - Predictor: - First Step Predictor: { } - Last Step Predictor: { } - Step Size: { } - Stepper: - Eigensolver: { } - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/Ioss2D/inputT.yaml b/tests/small/Ioss2D/inputT.yaml deleted file mode 100644 index 604ac3f3f7..0000000000 --- a/tests/small/Ioss2D/inputT.yaml +++ /dev/null @@ -1,89 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: Heat 2D - Dirichlet BCs: - DBC on NS nodelist_15 for DOF T: 1.50000000000000000e+00 - DBC on NS nodelist_16 for DOF T: 1.00000000000000000e+00 - DBC on NS nodelist_17 for DOF T: 1.00000000000000000e+00 - DBC on NS nodelist_18 for DOF T: 1.00000000000000000e+00 - Source Functions: - Quadratic: - Nonlinear Factor: 3.39999999999999991e+00 - Parameters: - Number Of Parameters: 0 - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Average - Discretization: - Method: Ioss - Exodus Input File Name: quadQuad.exo - Exodus Output File Name: quadOut_tpetra.exo - Regression For Response 0: - Test Value: 1.42910000000000003e+00 - Relative Tolerance: 1.00000000000000002e-03 - Piro: - LOCA: - Bifurcation: {} - Constraints: {} - Predictor: - First Step Predictor: {} - Last Step Predictor: {} - Step Size: {} - Stepper: - Eigensolver: {} - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 1 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/Ioss2D/inputT_Serial.yaml b/tests/small/Ioss2D/inputT_Serial.yaml deleted file mode 100644 index 528ede921c..0000000000 --- a/tests/small/Ioss2D/inputT_Serial.yaml +++ /dev/null @@ -1,88 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: Heat 2D - Dirichlet BCs: - DBC on NS nodelist_15 for DOF T: 1.50000000000000000e+00 - DBC on NS nodelist_16 for DOF T: 1.00000000000000000e+00 - DBC on NS nodelist_17 for DOF T: 1.00000000000000000e+00 - DBC on NS nodelist_18 for DOF T: 1.00000000000000000e+00 - Source Functions: - Quadratic: - Nonlinear Factor: 3.39999999999999991e+00 - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Average - Discretization: - Method: Ioss - Exodus Input File Name: quadQuad.exo - Exodus Output File Name: quadOut_tpetra.exo - Use Serial Mesh: true - Regression For Response 0: - Test Value: 1.42910000000000004e+00 - Relative Tolerance: 1.00000000000000002e-03 - Piro: - LOCA: - Bifurcation: { } - Constraints: { } - Predictor: - First Step Predictor: { } - Last Step Predictor: { } - Step Size: { } - Stepper: - Eigensolver: { } - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 1 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/Ioss2D/input_Serial.yaml b/tests/small/Ioss2D/input_Serial.yaml deleted file mode 100644 index 576af37abc..0000000000 --- a/tests/small/Ioss2D/input_Serial.yaml +++ /dev/null @@ -1,88 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 2D - Dirichlet BCs: - DBC on NS nodelist_15 for DOF T: 1.50000000000000000e+00 - DBC on NS nodelist_16 for DOF T: 1.00000000000000000e+00 - DBC on NS nodelist_17 for DOF T: 1.00000000000000000e+00 - DBC on NS nodelist_18 for DOF T: 1.00000000000000000e+00 - Source Functions: - Quadratic: - Nonlinear Factor: 3.39999999999999991e+00 - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Average - Discretization: - Method: Ioss - Exodus Input File Name: quadQuad.exo - Exodus Output File Name: quadOut.exo - Use Serial Mesh: true - Regression For Response 0: - Test Value: 1.42910000000000004e+00 - Relative Tolerance: 1.00000000000000002e-03 - Piro: - LOCA: - Bifurcation: { } - Constraints: { } - Predictor: - First Step Predictor: { } - Last Step Predictor: { } - Step Size: { } - Stepper: - Eigensolver: { } - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/Ioss2D/quadQuad.exo b/tests/small/Ioss2D/quadQuad.exo deleted file mode 100644 index 099903167c..0000000000 Binary files a/tests/small/Ioss2D/quadQuad.exo and /dev/null differ diff --git a/tests/small/Ioss2D/quadQuad.exo.4.0 b/tests/small/Ioss2D/quadQuad.exo.4.0 deleted file mode 100644 index 28aaa0f1ae..0000000000 Binary files a/tests/small/Ioss2D/quadQuad.exo.4.0 and /dev/null differ diff --git a/tests/small/Ioss2D/quadQuad.exo.4.1 b/tests/small/Ioss2D/quadQuad.exo.4.1 deleted file mode 100644 index 864f524fc9..0000000000 Binary files a/tests/small/Ioss2D/quadQuad.exo.4.1 and /dev/null differ diff --git a/tests/small/Ioss2D/quadQuad.exo.4.2 b/tests/small/Ioss2D/quadQuad.exo.4.2 deleted file mode 100644 index 39fea08b47..0000000000 Binary files a/tests/small/Ioss2D/quadQuad.exo.4.2 and /dev/null differ diff --git a/tests/small/Ioss2D/quadQuad.exo.4.3 b/tests/small/Ioss2D/quadQuad.exo.4.3 deleted file mode 100644 index a464ee2dd1..0000000000 Binary files a/tests/small/Ioss2D/quadQuad.exo.4.3 and /dev/null differ diff --git a/tests/small/Ioss2D/quadShell.exo b/tests/small/Ioss2D/quadShell.exo deleted file mode 100644 index cc07e5905d..0000000000 Binary files a/tests/small/Ioss2D/quadShell.exo and /dev/null differ diff --git a/tests/small/LandIce/CMakeLists.txt b/tests/small/LandIce/CMakeLists.txt index 264324eead..7e88f7d301 100644 --- a/tests/small/LandIce/CMakeLists.txt +++ b/tests/small/LandIce/CMakeLists.txt @@ -8,14 +8,11 @@ add_subdirectory(FO_Test) add_subdirectory(FO_GIS) add_subdirectory(FO_AIS) add_subdirectory(FO_Thermo) -add_subdirectory(Stokes_MMS) -add_subdirectory(Stokes_ISMIP) -add_subdirectory(Stokes_Test) add_subdirectory(SHMIP) add_subdirectory(Enthalpy) -if (NOT ENABLE_MESH_DEPENDS_ON_PARAMETERS AND NOT ENABLE_MESH_DEPENDS_ON_SOLUTION) +if (NOT ENABLE_MESH_DEPENDS_ON_PARAMETERS) add_subdirectory(FO_Hydrology) endif() diff --git a/tests/small/LandIce/FO_GIS/CMakeLists.txt b/tests/small/LandIce/FO_GIS/CMakeLists.txt index 4bbe2bc0aa..142d6486e8 100644 --- a/tests/small/LandIce/FO_GIS/CMakeLists.txt +++ b/tests/small/LandIce/FO_GIS/CMakeLists.txt @@ -223,46 +223,24 @@ endif() ### Coupled Thickness tests ### #################################### -if (ALBANY_MESH_DEPENDS_ON_SOLUTION) - # LB: Disabling this test for now, since ever since we merged #412 it no longer works - # To be clear, before merging #412 it passed, but it was computing the wrong thing... +set (testName ${testNameRoot}_CoupledThickness) - # set (testName ${testNameRoot}_CoupledThicknessShapeOpt) - - # if (ALBANY_EPETRA) - # configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_fo_gis_coupled_shape_opt.yaml - # ${CMAKE_CURRENT_BINARY_DIR}/input_fo_gis_coupled_shape_opt.yaml) - - # add_test(${testName}_Epetra ${Albany.exe} input_fo_gis_coupled_shape_opt.yaml) - # set_tests_properties(${testName}_Epetra PROPERTIES LABELS "LandIce;Epetra;Forward") - # endif() - # if (ALBANY_IFPACK2) - # configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_fo_gis_coupled_shape_optT.yaml - # ${CMAKE_CURRENT_BINARY_DIR}/input_fo_gis_coupled_shape_optT.yaml) - - # add_test(${testName}_Tpetra ${Albany.exe} input_fo_gis_coupled_shape_optT.yaml) - # set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "LandIce;Tpetra;Forward") - # endif() -else() - set (testName ${testNameRoot}_CoupledThickness) - - if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_fo_gis_coupled.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_fo_gis_coupled.yaml) +if (ALBANY_EPETRA) + configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_fo_gis_coupled.yaml + ${CMAKE_CURRENT_BINARY_DIR}/input_fo_gis_coupled.yaml) - add_test(${testName}_Epetra ${Albany.exe} input_fo_gis_coupled.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "LandIce;Epetra;Forward") - endif() + add_test(${testName}_Epetra ${Albany.exe} input_fo_gis_coupled.yaml) + set_tests_properties(${testName}_Epetra PROPERTIES LABELS "LandIce;Epetra;Forward") +endif() - IF(NOT ALBANY_ENABLE_CUDA) - #IKT, 3/14/19: the following tests need to be debugged in CUDA build and turned back on; - #see issue #420. - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_fo_gis_coupledT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_fo_gis_coupledT.yaml) +IF(NOT ALBANY_ENABLE_CUDA) + #IKT, 3/14/19: the following tests need to be debugged in CUDA build and turned back on; + #see issue #420. + configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_fo_gis_coupledT.yaml + ${CMAKE_CURRENT_BINARY_DIR}/input_fo_gis_coupledT.yaml) - add_test(${testName}_Tpetra ${Albany.exe} input_fo_gis_coupledT.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "LandIce;Tpetra;Forward") - endif() + add_test(${testName}_Tpetra ${Albany.exe} input_fo_gis_coupledT.yaml) + set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "LandIce;Tpetra;Forward") endif() #################################### diff --git a/tests/small/LandIce/Stokes_ISMIP/CMakeLists.txt b/tests/small/LandIce/Stokes_ISMIP/CMakeLists.txt deleted file mode 100644 index 8dcc022957..0000000000 --- a/tests/small/LandIce/Stokes_ISMIP/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR} NAME) -if (ALBANY_EPETRA) - - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_ismip-hom_testA.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_ismip-hom_testA.yaml COPYONLY) - - add_test(${testName}_TestA ${Albany.exe} input_ismip-hom_testA.yaml) - set_tests_properties(${testName}_TestA PROPERTIES LABELS "LandIce;Epetra;Forward") -endif() diff --git a/tests/small/LandIce/Stokes_ISMIP/input_ismip-hom_testA.yaml b/tests/small/LandIce/Stokes_ISMIP/input_ismip-hom_testA.yaml deleted file mode 100644 index 807206c135..0000000000 --- a/tests/small/LandIce/Stokes_ISMIP/input_ismip-hom_testA.yaml +++ /dev/null @@ -1,185 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 0 - Solution Method: Continuation - Name: LandIce Stokes 3D - Compute Sensitivities: false - Dirichlet BCs: - DBC on NS NodeSet99 for DOF p: 0.0 - DBC on NS NodeSet4 for DOF ux: 0.0 - DBC on NS NodeSet4 for DOF uy: 0.0 - DBC on NS NodeSet4 for DOF uz: 0.0 - Body Force: - Type: Gravity - LandIce Viscosity: - Type: Glen's Law - Glen's Law Homotopy Parameter: 0.3 - Glen's Law A: 3.1709792e-24 # [Pa^-n s^-1] - Glen's Law n: 3.0 - Tau M: - Delta: 0.1 - Initial Condition: - Function: Constant - Function Data: [5.0e-01, 5.0e-01, 5.0e-01, 5.0e-01] - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Scalar - Name: Glen's Law Homotopy Parameter - Response Functions: - Number Of Responses: 5 - Response 0: - Equation: 0 - Type: Scalar Response - Name: Solution Max Value - Response 1: - Equation: 1 - Type: Scalar Response - Name: Solution Max Value - Response 2: - Equation: 2 - Type: Scalar Response - Name: Solution Max Value - Response 3: - Equation: 3 - Type: Scalar Response - Name: Solution Max Value - Response 4: - Type: Scalar Response - Name: Solution Average - Discretization: - Periodic_x BC: true - Periodic_y BC: true - Workset Size: 100 - 1D Elements: 20 - 2D Elements: 20 - 3D Elements: 5 - 1D Scale: 1.0 - 2D Scale: 1.0 - 3D Scale: 1.0 - Transform Type: ISMIP-HOM Test A - LandIce alpha: 5.0e-01 - LandIce L: 5.0e+00 - Method: STK3D - Exodus Output File Name: ismip-hom_testA_out.exo - Piro: - LOCA: - Bifurcation: {} - Constraints: {} - Predictor: - Method: Constant - Stepper: - Initial Value: 0.0 - Continuation Parameter: Glen's Law Homotopy Parameter - Continuation Method: Natural - Max Steps: 10 - Max Value: 1.0 - Min Value: 0.0 - Step Size: - Initial Step Size: 1.0e-01 - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.0e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.0e-03 - Relative Tolerance: 1.0e-03 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: AztecOO - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 250 - Output Frequency: 10 - Max Iterations: 250 - Tolerance: 1.0e-06 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.0e-06 - Output Frequency: 10 - Output Style: 1 - Verbosity: 0 - Maximum Iterations: 250 - Block Size: 1 - Num Blocks: 250 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: level-of-fill': 1 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.0 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: - Error: true - Warning: true - Outer Iteration: true - Parameters: false - Details: false - Linear Solver Details: false - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Absolute Tolerance: 1.0e-03 - Relative Tolerance: 1.0e-03 - Test Value: 1.22592303461e+02 - Regression For Response 1: - Absolute Tolerance: 1.0e-03 - Relative Tolerance: 1.0e-03 - Test Value: 9.67586809539e+01 - Regression For Response 2: - Absolute Tolerance: 1.0e-03 - Relative Tolerance: 1.0e-03 - Test Value: 1.22408836693e+02 - Regression For Response 3: - Absolute Tolerance: 1.0e-03 - Relative Tolerance: 1.0e-03 - Test Value: 1.33791879567e+04 - Regression For Response 4: - Absolute Tolerance: 1.0e-03 - Relative Tolerance: 1.0e-03 - Test Value: 1.11624077823e+03 - -... diff --git a/tests/small/LandIce/Stokes_MMS/CMakeLists.txt b/tests/small/LandIce/Stokes_MMS/CMakeLists.txt deleted file mode 100644 index 7b46b2bdbe..0000000000 --- a/tests/small/LandIce/Stokes_MMS/CMakeLists.txt +++ /dev/null @@ -1,113 +0,0 @@ -# Name the test with the directory name -get_filename_component(testNameRoot ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -#################################### -### Poly test ### -#################################### - -set(testName ${testNameRoot}_Poly) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - add_test(${testName}_Epetra ${Albany.exe} input.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "LandIce;Epetra;Forward") -endif() - -if (ALBANY_IFPACK2) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - add_test(${testName}_Tpetra ${Albany.exe} inputT.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "LandIce;Tpetra;Forward") -endif() - -#################################### -### Couette Periodic test ### -#################################### - -set(testName ${testNameRoot}_CouettePeriodicX) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_couette_periodic.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_couette_periodic.yaml COPYONLY) - add_test(${testName} ${Albany.exe} input_couette_periodic.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "LandIce;Epetra;Forward") -endif() - -#################################### -### SinSin PeriodicXY test ### -#################################### - -set(testName ${testNameRoot}_SinSinPeriodicXY) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_sinsin.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_sinsin.yaml COPYONLY) - add_test(${testName} ${Albany.exe} input_sinsin.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "LandIce;Epetra;Forward") -endif() - -#################################### -### SinSin Dirichlet test ### -#################################### - -set(testName ${testNameRoot}_SinSinDirichlet) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_sinsin_dirichlet.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_sinsin_dirichlet.yaml COPYONLY) - add_test(${testName} ${Albany.exe} input_sinsin_dirichlet.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "LandIce;Epetra;Forward") -endif() - -#################################### -### SinCosZ Dirichlet test ### -#################################### - -set(testName ${testNameRoot}_SinCosZ3DDirichlet) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_sincosz_dirichlet.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_sincosz_dirichlet.yaml COPYONLY) - add_test(${testName} ${Albany.exe} input_sincosz_dirichlet.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "LandIce;Epetra;Forward") -endif() - -#################################### -### SinCosZ Periodic test ### -#################################### - -set(testName ${testNameRoot}_SinCosZ3DPeriodicXY) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_sincosz.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_sincosz.yaml COPYONLY) - add_test(${testName} ${Albany.exe} input_sincosz.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "LandIce;Epetra;Forward") -endif() - -#################################### -### SinCos Glen test ### -#################################### - -set(testName ${testNameRoot}_SinCosGlen) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_sincos_glen.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_sincos_glen.yaml COPYONLY) - add_test(${testName} ${Albany.exe} input_sincos_glen.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "LandIce;Epetra;Forward") -endif() - -#################################### -### SinExp Basal test ### -#################################### - -set(testName ${testNameRoot}_SinExpBasal) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_sinexp_basal.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_sinexp_basal.yaml COPYONLY) - add_test(${testName} ${Albany.exe} input_sinexp_basal.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "LandIce;Epetra;Forward") -endif() diff --git a/tests/small/LandIce/Stokes_MMS/input.yaml b/tests/small/LandIce/Stokes_MMS/input.yaml deleted file mode 100644 index b9b8bacd73..0000000000 --- a/tests/small/LandIce/Stokes_MMS/input.yaml +++ /dev/null @@ -1,116 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 1 - Name: LandIce Stokes 2D - Dirichlet BCs: - DBC on NS NodeSet0 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet99 for DOF p: 4.16129999999999977e+00 - Body Force: - Type: Poly - LandIce Viscosity: - Type: Constant - Parameters: - Number Of Parameters: 0 - Response Functions: - Number Of Responses: 1 - Response 0: - Equation: 0 - Type: Scalar Response - Name: Solution Max Value - Discretization: - 1D Elements: 200 - 2D Elements: 200 - 1D Scale: 1.00000000000000000e+00 - 2D Scale: 1.00000000000000000e+00 - Method: STK2D - Exodus Output File Name: stokes_out.exo - Piro: - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 9.99999999999999954e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000002e-03 - Relative Tolerance: 1.00000000000000002e-03 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 250 - Output Frequency: 10 - Max Iterations: 250 - Tolerance: 9.99999999999999954e-07 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 9.99999999999999954e-07 - Output Frequency: 10 - Output Style: 1 - Verbosity: 0 - Maximum Iterations: 250 - Block Size: 1 - Num Blocks: 250 - Flexible Gmres: false - Preconditioner Type: ML - Preconditioner Types: - ML: - Base Method Defaults: none - ML Settings: - default values: SA - 'smoother: type': ML symmetric Gauss-Seidel - 'smoother: pre or post': both - 'coarse: type': Amesos-KLU - PDE equations: 4 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Test Value: 1.20281465547999996e-01 - Relative Tolerance: 1.00000000000000008e-05 -... diff --git a/tests/small/LandIce/Stokes_MMS/inputT.yaml b/tests/small/LandIce/Stokes_MMS/inputT.yaml deleted file mode 100644 index 1dfe3f6b85..0000000000 --- a/tests/small/LandIce/Stokes_MMS/inputT.yaml +++ /dev/null @@ -1,115 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Phalanx Graph Visualization Detail: 1 - Name: LandIce Stokes 2D - Dirichlet BCs: - DBC on NS NodeSet0 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet99 for DOF p: 4.16129999999999977e+00 - Body Force: - Type: Poly - LandIce Viscosity: - Type: Constant - Parameters: - Number Of Parameters: 0 - Response Functions: - Number Of Responses: 1 - Response 0: - Equation: 0 - Type: Scalar Response - Name: Solution Max Value - Discretization: - 1D Elements: 100 - 2D Elements: 100 - 1D Scale: 1.00000000000000000e+00 - 2D Scale: 1.00000000000000000e+00 - Method: STK2D - Exodus Output File Name: stokes_outT.exo - Piro: - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 9.99999999999999954e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000002e-03 - Relative Tolerance: 1.00000000000000002e-03 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 250 - Output Frequency: 10 - Max Iterations: 250 - Tolerance: 9.99999999999999954e-07 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 9.99999999999999954e-07 - Output Frequency: 10 - Output Style: 1 - Verbosity: 0 - Maximum Iterations: 250 - Block Size: 1 - Num Blocks: 250 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 2 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: drop tolerance': 0.00000000e+09 - 'fact: ilut level-of-fill': 1.00000000 - 'fact: level-of-fill': 1 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Backtrack - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Test Value: 1.202898566199e-01 - Relative Tolerance: 1.00000000000000008e-05 -... diff --git a/tests/small/LandIce/Stokes_MMS/input_couette_periodic.yaml b/tests/small/LandIce/Stokes_MMS/input_couette_periodic.yaml deleted file mode 100644 index 9494085a7d..0000000000 --- a/tests/small/LandIce/Stokes_MMS/input_couette_periodic.yaml +++ /dev/null @@ -1,118 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 0 - Name: LandIce Stokes 2D - Compute Sensitivities: true - Dirichlet BCs: - DBC on NS NodeSet2 for DOF ux: 1.00000000000000000e+00 - DBC on NS NodeSet3 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet99 for DOF p: 1.00000000000000000e+00 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Scalar - Name: DBC on NS NodeSet2 for DOF ux - LandIce Viscosity: - Type: Constant - Response Functions: - Number Of Responses: 1 - Response 0: - Equation: 0 - Type: Scalar Response - Name: Solution Average - Discretization: - Periodic_x BC: true - 1D Elements: 40 - 2D Elements: 20 - 1D Scale: 2.50000000000000000e+00 - 2D Scale: 1.00000000000000000e+00 - Method: STK2D - Workset Size: 50 - Exodus Output File Name: nscp_out.exo - Piro: - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 9.99999999999999954e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000002e-03 - Relative Tolerance: 1.00000000000000002e-03 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 250 - Output Frequency: 20 - Max Iterations: 250 - Tolerance: 1.00000000000000002e-08 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000002e-08 - Output Frequency: 20 - Output Style: 1 - Verbosity: 0 - Maximum Iterations: 250 - Block Size: 1 - Num Blocks: 250 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - ML: - Base Method Defaults: none - ML Settings: - default values: SA - 'smoother: type': ML symmetric Gauss-Seidel - 'smoother: pre or post': both - 'coarse: type': Amesos-KLU - PDE equations: 4 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Sensitivity For Parameter 0: - Test Value: 1.66666599999999998e-01 - Test Value: 5.00000000000000000e-01 - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/LandIce/Stokes_MMS/input_sincos_glen.yaml b/tests/small/LandIce/Stokes_MMS/input_sincos_glen.yaml deleted file mode 100644 index acb70b10fc..0000000000 --- a/tests/small/LandIce/Stokes_MMS/input_sincos_glen.yaml +++ /dev/null @@ -1,174 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 0 - Solution Method: Continuation - Name: LandIce Stokes 2D - Dirichlet BCs: - DBC on NS NodeSet99 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet99 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF ux: 9.42477796000000012e+00 - DBC on NS NodeSet2 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF uy: -9.42477796000000012e+00 - DBC on NS NodeSet99 for DOF p: 0.00000000000000000e+00 - Body Force: - Type: SinSinGlen - Glen's Law A: 3.1709792e-14 # [Pa^-n s^-1] - Glen's Law n: 1.00000000000000000e+00 - LandIce Viscosity: - Type: Glen's Law - Glen's Law Homotopy Parameter: 2.99999999999999988e-01 - Glen's Law A: 3.1709792e-14 # [Pa^-n s^-1] - Glen's Law n: 1.00000000000000000e+00 - Tau M: - Delta: 2.00000000000000000e+00 - Initial Condition: - Function: Constant - Function Data: [5.00000000000000000e-01, 5.00000000000000000e-01, 5.00000000000000000e-01] - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Scalar - Name: Glen's Law Homotopy Parameter - Response Functions: - Response 2: - Equation: 2 - Type: Scalar Response - Name: Solution Max Value - Response 3: - Type: Scalar Response - Name: Solution Average - Number Of Responses: 4 - Response 1: - Equation: 1 - Type: Scalar Response - Name: Solution Max Value - Response 0: - Equation: 0 - Type: Scalar Response - Name: Solution Max Value - Discretization: - 1D Elements: 20 - 2D Elements: 20 - 1D Scale: 1.00000000000000000e+00 - 2D Scale: 1.00000000000000000e+00 - Method: STK2D - Exodus Output File Name: sincos_glen_out.exo - Cubature Degree: 7 - Piro: - LOCA: - Bifurcation: {} - Constraints: {} - Predictor: - Method: Constant - Stepper: - Initial Value: 0.00000000000000000e+00 - Continuation Parameter: Glen's Law Homotopy Parameter - Continuation Method: Natural - Max Steps: 10 - Max Value: 1.00000000000000000e+00 - Min Value: 0.00000000000000000e+00 - Step Size: - Initial Step Size: 5.00000000000000027e-02 - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000002e-03 - Relative Tolerance: 1.00000000000000002e-03 - Test 1: - Test Type: MaxIters - Maximum Iterations: 20 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 250 - Output Frequency: 10 - Max Iterations: 1000 - Tolerance: 9.99999999999999954e-07 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 9.99999999999999954e-07 - Output Frequency: 10 - Output Style: 1 - Verbosity: 0 - Maximum Iterations: 1000 - Block Size: 1 - Num Blocks: 250 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: level-of-fill': 1 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: - Error: true - Warning: true - Outer Iteration: true - Parameters: false - Details: false - Linear Solver Details: false - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Absolute Tolerance: 1.0e-03 - Relative Tolerance: 1.0e-03 - Test Value: 9.42477796e+00 - Regression For Response 1: - Absolute Tolerance: 1.0e-03 - Relative Tolerance: 1.0e-03 - Test Value: 0.0 - Regression For Response 2: - Absolute Tolerance: 1.0e-03 - Relative Tolerance: 1.0e-03 - Test Value: 0.0 - Regression For Response 3: - Absolute Tolerance: 1.0e-03 - Relative Tolerance: 1.0e-03 - Test Value: -4.23876917414e+00 - -... diff --git a/tests/small/LandIce/Stokes_MMS/input_sincosz.yaml b/tests/small/LandIce/Stokes_MMS/input_sincosz.yaml deleted file mode 100644 index d4d03cce00..0000000000 --- a/tests/small/LandIce/Stokes_MMS/input_sincosz.yaml +++ /dev/null @@ -1,151 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 0 - Name: LandIce Stokes 3D - Dirichlet BCs: - DBC on NS NodeSet99 for DOF p: 0.00000000000000000e+00 - DBC on NS NodeSet4 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet5 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet4 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet5 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet4 for DOF uz: 0.00000000000000000e+00 - DBC on NS NodeSet5 for DOF uz: 0.00000000000000000e+00 - Body Force: - Type: SinCosZ - LandIce Viscosity: - Type: Constant - Initial Condition: - Function: Constant - Function Data: [5.00000000000000000e-01, 5.00000000000000000e-01, 5.00000000000000000e-01, 5.00000000000000000e-01] - Parameters: - Number Of Parameters: 0 - Response Functions: - Response 4: - Type: Scalar Response - Name: Solution Average - Response 3: - Equation: 3 - Type: Scalar Response - Name: Solution Max Value - Response 2: - Equation: 2 - Type: Scalar Response - Name: Solution Max Value - Response 1: - Equation: 1 - Type: Scalar Response - Name: Solution Max Value - Response 0: - Equation: 0 - Type: Scalar Response - Name: Solution Max Value - Number Of Responses: 5 - Discretization: - Periodic_x BC: true - Periodic_y BC: true - Workset Size: 100 - 1D Elements: 12 - 2D Elements: 12 - 3D Elements: 12 - 1D Scale: 1.00000000000000000e+00 - 2D Scale: 1.00000000000000000e+00 - 3D Scale: 1.00000000000000000e+00 - Method: STK3D - Exodus Output File Name: sincosz_out.exo - Piro: - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000002e-03 - Relative Tolerance: 1.00000000000000002e-03 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 250 - Output Frequency: 10 - Max Iterations: 250 - Tolerance: 9.99999999999999954e-07 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 9.99999999999999954e-07 - Output Frequency: 10 - Output Style: 1 - Verbosity: 0 - Maximum Iterations: 250 - Block Size: 1 - Num Blocks: 250 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: level-of-fill': 1 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Absolute Tolerance: 1.00000000000000002e-03 - Test Value: 9.46470451669999962e-02 - Relative Tolerance: 1.00000000000000002e-03 - Regression For Response 1: - Absolute Tolerance: 1.00000000000000002e-03 - Test Value: 9.46470451669999962e-02 - Relative Tolerance: 1.00000000000000002e-03 - Regression For Response 2: - Absolute Tolerance: 1.00000000000000002e-03 - Test Value: 4.07398700193999985e-01 - Relative Tolerance: 1.00000000000000002e-03 - Regression For Response 3: - Absolute Tolerance: 1.00000000000000002e-03 - Test Value: 7.56392161613000002e+00 - Relative Tolerance: 1.00000000000000002e-03 - Regression For Response 4: - Absolute Tolerance: 1.00000000000000002e-03 - Test Value: 9.23554917252999950e-17 - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/LandIce/Stokes_MMS/input_sincosz_dirichlet.yaml b/tests/small/LandIce/Stokes_MMS/input_sincosz_dirichlet.yaml deleted file mode 100644 index 968549660f..0000000000 --- a/tests/small/LandIce/Stokes_MMS/input_sincosz_dirichlet.yaml +++ /dev/null @@ -1,160 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 0 - Name: LandIce Stokes 3D - Dirichlet BCs: - DBC on NS NodeSet99 for DOF p: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF p: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF p: 0.00000000000000000e+00 - DBC on NS NodeSet4 for DOF p: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet4 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet5 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet4 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet5 for DOF uy: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF uz: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF uz: 0.00000000000000000e+00 - DBC on NS NodeSet4 for DOF uz: 0.00000000000000000e+00 - DBC on NS NodeSet5 for DOF uz: 0.00000000000000000e+00 - Body Force: - Type: SinCosZ - LandIce Viscosity: - Type: Constant - Initial Condition: - Function: Constant - Function Data: [5.00000000000000000e-01, 5.00000000000000000e-01, 5.00000000000000000e-01, 5.00000000000000000e-01] - Parameters: - Number Of Parameters: 0 - Response Functions: - Response 4: - Type: Scalar Response - Name: Solution Average - Response 3: - Equation: 3 - Type: Scalar Response - Name: Solution Max Value - Response 2: - Equation: 2 - Type: Scalar Response - Name: Solution Max Value - Response 1: - Equation: 1 - Type: Scalar Response - Name: Solution Max Value - Response 0: - Equation: 0 - Type: Scalar Response - Name: Solution Max Value - Number Of Responses: 5 - Discretization: - Periodic_x BC: false - Periodic_y BC: false - Workset Size: 200 - 1D Elements: 12 - 2D Elements: 12 - 3D Elements: 12 - 1D Scale: 1.00000000000000000e+00 - 2D Scale: 1.00000000000000000e+00 - 3D Scale: 1.00000000000000000e+00 - Method: STK3D - Exodus Output File Name: sincosz_out.exo - Piro: - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000002e-03 - Relative Tolerance: 1.00000000000000002e-03 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 250 - Output Frequency: 10 - Max Iterations: 250 - Tolerance: 9.99999999999999954e-07 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 9.99999999999999954e-07 - Output Frequency: 10 - Output Style: 1 - Verbosity: 0 - Maximum Iterations: 250 - Block Size: 1 - Num Blocks: 250 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: level-of-fill': 1 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Absolute Tolerance: 1.00000000000000002e-02 - Test Value: 9.62999999999999967e-02 - Relative Tolerance: 1.00000000000000002e-02 - Regression For Response 1: - Absolute Tolerance: 1.00000000000000002e-02 - Test Value: 9.62999999999999967e-02 - Relative Tolerance: 1.00000000000000002e-02 - Regression For Response 2: - Absolute Tolerance: 1.00000000000000002e-02 - Test Value: 4.06000000000000027e-01 - Relative Tolerance: 1.00000000000000002e-02 - Regression For Response 3: - Absolute Tolerance: 1.00000000000000002e-02 - Test Value: 7.62500000000000000e+00 - Relative Tolerance: 1.00000000000000002e-02 - Regression For Response 4: - Absolute Tolerance: 1.00000000000000002e-02 - Test Value: 0.00000000000000000e+00 - Relative Tolerance: 1.00000000000000002e-02 -... diff --git a/tests/small/LandIce/Stokes_MMS/input_sinexp_basal.yaml b/tests/small/LandIce/Stokes_MMS/input_sinexp_basal.yaml deleted file mode 100644 index ff4c8069eb..0000000000 --- a/tests/small/LandIce/Stokes_MMS/input_sinexp_basal.yaml +++ /dev/null @@ -1,128 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 0 - Name: LandIce Stokes 2D - Dirichlet BCs: - DBC on NS NodeSet0 for DOF p: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF p: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF p: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF p: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF ux: 0.00000000000000000e+00 - Neumann BCs: - NBC on SS SideSet0 for DOF ux set robin: [0.00000000000000000e+00, 2.00000000000000000e+00] - NBC on SS SideSet0 for DOF uy set robin: [0.00000000000000000e+00, 4.04784000000000006e+01] - NBC on SS SideSet1 for DOF ux set robin: [0.00000000000000000e+00, -2.00000000000000000e+00] - NBC on SS SideSet1 for DOF uy set robin: [0.00000000000000000e+00, -4.04784000000000006e+01] - Body Force: - Type: FullStokesBasal - Tau M: - Delta: 1.00000000000000005e-01 - LandIce Viscosity: - Type: Constant - Initial Condition: - Function: Constant - Function Data: [5.00000000000000000e-01, 5.00000000000000000e-01, 5.00000000000000000e-01] - Parameters: - Number Of Parameters: 0 - Response Functions: - Number Of Responses: 2 - Response 1: - Type: Scalar Response - Name: Solution Average - Response 0: - Equation: 0 - Type: Scalar Response - Name: Solution Max Value - Discretization: - 1D Elements: 20 - 2D Elements: 20 - 1D Scale: 1.00000000000000000e+00 - 2D Scale: 1.00000000000000000e+00 - Method: STK2D - Exodus Output File Name: fullStokes_basal_out.exo - Piro: - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000002e-03 - Relative Tolerance: 1.00000000000000002e-03 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 250 - Output Frequency: 10 - Max Iterations: 250 - Tolerance: 9.99999999999999954e-07 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 9.99999999999999954e-07 - Output Frequency: 10 - Output Style: 1 - Verbosity: 0 - Maximum Iterations: 250 - Block Size: 1 - Num Blocks: 250 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: level-of-fill': 1 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Absolute Tolerance: 1.00000000000000005e-01 - Test Value: 1.70625078911000009e+01 - Relative Tolerance: 1.00000000000000002e-02 - Regression For Response 1: - Absolute Tolerance: 1.00000000000000005e-01 - Test Value: 2.73410237223000000e-02 - Relative Tolerance: 1.00000000000000002e-02 -... diff --git a/tests/small/LandIce/Stokes_MMS/input_sinsin.yaml b/tests/small/LandIce/Stokes_MMS/input_sinsin.yaml deleted file mode 100644 index 8c6d096fe4..0000000000 --- a/tests/small/LandIce/Stokes_MMS/input_sinsin.yaml +++ /dev/null @@ -1,122 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 0 - Name: LandIce Stokes 2D - Dirichlet BCs: - DBC on NS NodeSet99 for DOF p: 0.00000000000000000e+00 - DBC on NS NodeSet99 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet99 for DOF uy: 1.00000000000000000e+00 - Body Force: - Type: SinSin - LandIce Viscosity: - Type: Constant - Initial Condition: - Function: Constant - Function Data: [5.00000000000000000e-01, 5.00000000000000000e-01, 5.00000000000000000e-01] - Response Functions: - Number Of Responses: 2 - Response 1: - Type: Scalar Response - Name: Solution Average - Response 0: - Equation: 0 - Type: Scalar Response - Name: Solution Max Value - Discretization: - Periodic_x BC: true - Periodic_y BC: true - Workset Size: 100 - 1D Scale: 1.00000000000000000e+00 - 2D Scale: 1.00000000000000000e+00 - Element Blocks: 4 - Block 0: 'begins at (0, 0) ends at (39, 39) length (0.975, 0.975) named MainDomain' - Block 1: 'begins at (39, 0) ends at (40, 39) length (0.025, 0.975) named RightStrip' - Block 2: 'begins at (0, 39) ends at (39, 40) length (0.975, 0.025) named TopStrip' - Block 3: 'begins at (39, 39) ends at (40, 40) length (0.025, 0.025) named TopCorner' - Method: STK2D - Exodus Output File Name: sinsin_out.exo - Piro: - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000002e-03 - Relative Tolerance: 1.00000000000000002e-03 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 250 - Output Frequency: 10 - Max Iterations: 250 - Tolerance: 9.99999999999999954e-07 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 9.99999999999999954e-07 - Output Frequency: 10 - Output Style: 1 - Verbosity: 0 - Maximum Iterations: 250 - Block Size: 1 - Num Blocks: 250 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: level-of-fill': 1 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Absolute Tolerance: 0.1 - Relative Tolerance: 1.0e-02 - Test Value: 1.0 - Regression For Response 1: - Absolute Tolerance: 0.1 - Relative Tolerance: 1.0e-02 - Test Value: 0.0 -... diff --git a/tests/small/LandIce/Stokes_MMS/input_sinsin_dirichlet.yaml b/tests/small/LandIce/Stokes_MMS/input_sinsin_dirichlet.yaml deleted file mode 100644 index da93eb3e94..0000000000 --- a/tests/small/LandIce/Stokes_MMS/input_sinsin_dirichlet.yaml +++ /dev/null @@ -1,128 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 0 - Name: LandIce Stokes 2D - Dirichlet BCs: - DBC on NS NodeSet99 for DOF p: 0.00000000000000000e+00 - DBC on NS NodeSet99 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet99 for DOF uy: 1.00000000000000000e+00 - DBC on NS NodeSet0 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF ux: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF p: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF p: 0.00000000000000000e+00 - Body Force: - Type: SinSin - LandIce Viscosity: - Type: Constant - Initial Condition: - Function: Constant - Function Data: [5.00000000000000000e-01, 5.00000000000000000e-01, 5.00000000000000000e-01] - Response Functions: - Number Of Responses: 2 - Response 1: - Type: Scalar Response - Name: Solution Average - Response 0: - Equation: 0 - Type: Scalar Response - Name: Solution Max Value - Discretization: - Periodic_x BC: false - Periodic_y BC: false - Workset Size: 100 - 1D Scale: 1.00000000000000000e+00 - 2D Scale: 1.00000000000000000e+00 - Element Blocks: 4 - Block 0: 'begins at (0, 0) ends at (39, 39) length (0.975, 0.975) named MainDomain' - Block 1: 'begins at (39, 0) ends at (40, 39) length (0.025, 0.975) named RightStrip' - Block 2: 'begins at (0, 39) ends at (39, 40) length (0.975, 0.025) named TopStrip' - Block 3: 'begins at (39, 39) ends at (40, 40) length (0.025, 0.025) named TopCorner' - Method: STK2D - Exodus Output File Name: sinsin_out.exo - Piro: - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000002e-03 - Relative Tolerance: 1.00000000000000002e-03 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 250 - Output Frequency: 10 - Max Iterations: 250 - Tolerance: 1.0e-6 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.0e-6 - Output Frequency: 10 - Output Style: 1 - Verbosity: 0 - Maximum Iterations: 250 - Block Size: 1 - Num Blocks: 250 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: level-of-fill': 1 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Absolute Tolerance: 1.0e-01 - Relative Tolerance: 1.0e-02 - Test Value: 1.0 - Regression For Response 1: - Absolute Tolerance: 1.0e-01 - Relative Tolerance: 1.0e-02 - Test Value: 0.0 -... diff --git a/tests/small/LandIce/Stokes_Test/CMakeLists.txt b/tests/small/LandIce/Stokes_Test/CMakeLists.txt deleted file mode 100644 index c4f3823323..0000000000 --- a/tests/small/LandIce/Stokes_Test/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR} NAME) -if (ALBANY_EPETRA) - - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_dome.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_dome.yaml COPYONLY) - - add_test(${testName}_Dome ${Albany.exe} input_dome.yaml) - set_tests_properties(${testName}_Dome PROPERTIES LABELS "LandIce;Epetra;Forward") -endif() - diff --git a/tests/small/LandIce/Stokes_Test/input_dome.yaml b/tests/small/LandIce/Stokes_Test/input_dome.yaml deleted file mode 100644 index 481d8cd294..0000000000 --- a/tests/small/LandIce/Stokes_Test/input_dome.yaml +++ /dev/null @@ -1,183 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 1 - Solution Method: Continuation - Name: LandIce Stokes 3D - Compute Sensitivities: true - Dirichlet BCs: - DBC on NS lateral for DOF ux: 0.0 - DBC on NS lateral for DOF uy: 0.0 - DBC on NS lateral for DOF uz: 0.0 - DBC on NS basal for DOF ux: 0.0 - DBC on NS basal for DOF uy: 0.0 - DBC on NS basal for DOF uz: 0.0 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Scalar - Name: Glen's Law Homotopy Parameter - LandIce Viscosity: - Type: Glen's Law - Glen's Law Homotopy Parameter: 0.3 - Glen's Law A: 3.1709792e-24 # [Pa^-n s^-1] - Glen's Law n: 3.0 - Tau M: - Delta: 0.1 - Body Force: - Type: Gravity - Response Functions: - Number Of Responses: 5 - Response 0: - Equation: 0 - Type: Scalar Response - Name: Solution Max Value - Response 1: - Equation: 1 - Type: Scalar Response - Name: Solution Max Value - Response 2: - Equation: 2 - Type: Scalar Response - Name: Solution Max Value - Response 3: - Equation: 3 - Type: Scalar Response - Name: Solution Max Value - Response 4: - Type: Scalar Response - Name: Solution Average - Discretization: - Transform Type: Dome - Method: Exodus - Exodus Input File Name: ../ExoMeshes/dome_cyl.exo - Exodus Output File Name: dome_out.exo - Piro: - LOCA: - Bifurcation: {} - Constraints: {} - Predictor: - Method: Constant - Stepper: - Initial Value: 0.0 - Continuation Parameter: Glen's Law Homotopy Parameter - Continuation Method: Natural - Max Steps: 10 - Max Value: 1.0 - Min Value: 0.0 - Step Size: - Initial Step Size: 1.0e-01 - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.0e-06 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.0e-03 - Relative Tolerance: 1.0e-06 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 20 - Max Iterations: 1000 - Tolerance: 1.0e-06 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.0e-06 - Output Frequency: 20 - Output Style: 1 - Verbosity: 0 - Maximum Iterations: 1000 - Block Size: 1 - Num Blocks: 200 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 0 - Prec Type: ILU - Ifpack Settings: - 'fact: level-of-fill': 0 - ML: - Base Method Defaults: none - ML Settings: - default values: SA - 'smoother: type': ML symmetric Gauss-Seidel - 'smoother: pre or post': both - 'coarse: type': Amesos-KLU - PDE equations: 4 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.0 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: true - Parameters: false - Details: false - Linear Solver Details: false - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Absolute Tolerance: 1.0e-08 - Relative Tolerance: 1.0e-04 - Test Value: 1.05281573927e+02 - Regression For Response 1: - Absolute Tolerance: 1.0e-08 - Relative Tolerance: 1.0e-04 - Test Value: 1.05281573927e+02 - Regression For Response 2: - Absolute Tolerance: 1.0e-08 - Relative Tolerance: 1.0e-04 - Test Value: 1.79641604894e+01 - Regression For Response 3: - Absolute Tolerance: 1.0e-04 - Relative Tolerance: 1.0e-04 - Test Value: 6.27385242345e+03 - Regression For Response 4: - Absolute Tolerance: 1.0e-04 - Relative Tolerance: 1.0e-04 - Test Value: 5.60064038295e+02 - Sensitivity For Parameter 0: - Test Value: -1.784760224056e-03 -... diff --git a/tests/small/LinComprNS/CMakeLists.txt b/tests/small/LinComprNS/CMakeLists.txt deleted file mode 100644 index 69fd0a7f8a..0000000000 --- a/tests/small/LinComprNS/CMakeLists.txt +++ /dev/null @@ -1,99 +0,0 @@ -# Name the test with the directory name -get_filename_component(testNameRoot ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -#################################### -### 1D Standing Wave test ### -#################################### - -IF(NOT ALBANY_PARALLEL_ONLY AND ALBANY_EPETRA) - set(testName ${testNameRoot}_1D_standingWave) - - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input1D_standingWave.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input1D_standingWave.yaml COPYONLY) - - add_test(${testName} ${SerialAlbany.exe} input1D_standingWave.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "Demo;Epetra;Forward;Serial") -endif() - -#################################### -### 2D Steady test ### -#################################### - -IF(NOT ALBANY_PARALLEL_ONLY AND ALBANY_EPETRA) - set(testName ${testNameRoot}_2DSteady) - - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input2D.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input2D.yaml COPYONLY) - - add_test(${testName} ${SerialAlbany.exe} input2D.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "Demo;Epetra;Forward;Serial") -endif() - -#################################### -### 2D Press Pulse test ### -#################################### - -if (ALBANY_IFPACK2) - set(testName ${testNameRoot}_2DUnsteadyInvPressPulse) - - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input2Dunsteady.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input2Dunsteady.yaml COPYONLY) - - add_test(${testName} ${Albany.exe} input2Dunsteady.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "Demo;Tpetra;Forward") -endif() - -#################################### -### 2D Euler MMS test ### -#################################### - -IF(NOT ALBANY_PARALLEL_ONLY AND ALBANY_EPETRA) - set(testName ${testNameRoot}_2DUnsteadyEulerMMS) - - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input2DunsteadyMMS.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input2DunsteadyMMS.yaml COPYONLY) - add_test(${testName} ${SerialAlbany.exe} input2DunsteadyMMS.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "Demo;Epetra;Forward;Serial") -ENDIF() - -#################################### -### 2D Driven Pulse test ### -#################################### - -IF(NOT ALBANY_PARALLEL_ONLY AND ALBANY_EPETRA) - set(testName ${testNameRoot}_2DDrivenPulse) - - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input2D_drivenPulse.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input2D_drivenPulse.yaml COPYONLY) - - add_test(${testName} ${SerialAlbany.exe} input2D_drivenPulse.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "Demo;Epetra;Forward;Serial") -ENDIF() - -#################################### -### 3D Unsteady Euler test ### -#################################### - -IF(NOT ALBANY_PARALLEL_ONLY AND ALBANY_EPETRA) - set(testName ${testNameRoot}_3DUnsteadyEuler) - - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input3Dunsteady.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input3Dunsteady.yaml COPYONLY) - - add_test(${testName} ${SerialAlbany.exe} input3Dunsteady.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "Demo;Epetra;Forward;Serial") -ENDIF() - -#################################### -### 3D Unsteady NS test ### -#################################### - -#IF(NOT ALBANY_PARALLEL_ONLY AND ALBANY_EPETRA) -# set(testName ${testNameRoot}_3DUnsteadyNS) - -# configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input3DunsteadyNS.yaml -# ${CMAKE_CURRENT_BINARY_DIR}/input3DunsteadyNS.yaml COPYONLY) - - # add_test(${testName} ${SerialAlbany.exe} input3DunsteadyNS.yaml) -# set_tests_properties(${testName} PROPERTIES LABELS "Demo;Epetra;Forward;Serial") -#ENDIF() diff --git a/tests/small/LinComprNS/input1D_standingWave.yaml b/tests/small/LinComprNS/input1D_standingWave.yaml deleted file mode 100644 index 09dd94e615..0000000000 --- a/tests/small/LinComprNS/input1D_standingWave.yaml +++ /dev/null @@ -1,151 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 1 - Name: LinComprNS 1D - Solution Method: Transient - Number of PDE Equations: 2 - Dirichlet BCs: - DBC on NS NodeSet0 for DOF qFluct1: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF qFluct1: 0.00000000000000000e+00 - Body Force: - Type: None - Equation Set: - Type: Euler - IBP Convective Terms: true - Base Flow Data: [1.00000000000000005e-01, 8.44501799999999969e-01, 1.01325139400000000e+05] - Initial Condition: - Function: 1D Acoustic Wave - Function Data: [1.00000000000000005e-01, 1.00000000000000000e+00, 1.00000000000000000e+00] - Parameters: - Number Of Parameters: 0 - Response Functions: - Response 2: - Type: Scalar Response - Name: Solution Average - Number Of Responses: 3 - Response 1: - Equation: 1 - Type: Scalar Response - Name: Solution Max Value - Response 0: - Equation: 0 - Type: Scalar Response - Name: Solution Max Value - Discretization: - Periodic_x BC: true - 1D Elements: 64 - 1D Scale: 6.28318530717958978e+00 - Method: STK1D - Exodus Output File Name: lincomprns1D_standingWave_out.exo - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 1.00000000000000016e-06 - Final Time: 1.00000000000000008e-05 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-08 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 9.99999999999999979e-13 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000004e-04 - Relative Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 20 - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000002e-08 - Output Frequency: 1 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 3 - Block Size: 1 - Num Blocks: 100 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Prec Type: ILU - Overlap: 1 - Ifpack Settings: - 'fact: level-of-fill': 1 - Regression For Response 0: - Test Value: 9.99973644855999960e-02 - Relative Tolerance: 1.00000000000000004e-04 - Regression For Response 1: - Test Value: 2.83707252836000012e-01 - Relative Tolerance: 1.00000000000000004e-04 - Regression For Response 2: - Test Value: 2.81800790799999997e-09 - Relative Tolerance: 1.00000000000000004e-04 -... diff --git a/tests/small/LinComprNS/input2D.yaml b/tests/small/LinComprNS/input2D.yaml deleted file mode 100644 index c340a5d9f3..0000000000 --- a/tests/small/LinComprNS/input2D.yaml +++ /dev/null @@ -1,154 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 1 - Name: LinComprNS 2D - Number of PDE Equations: 3 - Dirichlet BCs: - DBC on NS NodeSet0 for DOF qFluct0: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF qFluct1: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF qFluct2: 0.00000000000000000e+00 - Body Force: - Type: Steady Euler - Equation Set: - Type: Euler - Base Flow Data: [1.00000000000000000e+00, 1.00000000000000000e+00, 1.00000000000000000e+00, 0.00000000000000000e+00] - Initial Condition: - Function: Constant - Function Data: [1.00000000000000000e+00, 1.00000000000000000e+00, 1.00000000000000000e+00] - Parameters: - Number Of Parameters: 0 - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - 1D Elements: 10 - 2D Elements: 10 - 1D Scale: 1.00000000000000000e+00 - 2D Scale: 1.00000000000000000e+00 - Method: STK2D - Exodus Output File Name: lincomprns2D_out.exo - Piro: - LOCA: - Bifurcation: {} - Constraints: {} - Predictor: - Method: Tangent - Stepper: - Initial Value: 1.00000000000000000e+00 - Continuation Method: Natural - Continuation Parameter: DBC on NS cylinder for DOF qFluct0 - Max Steps: 1 - Max Value: 4.50000000000000000e+01 - Min Value: 5.00000000000000000e-01 - Compute Eigenvalues: true - Eigensolver: - Method: Anasazi - Operator: Cayley - Num Blocks: 100 - Num Eigenvalues: 1 - Save Eigenvectors: 1 - Block Size: 1 - Maximum Restarts: 0 - Cayley Pole: 1.00000000000000000e+01 - Cayley Zero: -1.00000000000000000e+01 - Normalize Eigenvectors with Mass Matrix: false - Step Size: - Initial Step Size: 2.00000000000000000e+00 - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 9.99999999999999979e-13 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000004e-04 - Relative Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 20 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 20 - Max Iterations: 200 - Tolerance: 9.99999999999999954e-07 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 9.99999999999999954e-07 - Output Frequency: 20 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 200 - Block Size: 1 - Num Blocks: 200 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 0 - Prec Type: ILU - Ifpack Settings: - 'fact: level-of-fill': 0 - ML: - Base Method Defaults: none - ML Settings: - default values: SA - 'smoother: type': ML symmetric Gauss-Seidel - 'smoother: pre or post': both - 'coarse: type': Amesos-KLU - PDE equations: 4 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: true - Parameters: false - Details: false - Linear Solver Details: false - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Test Value: 1.31293490402000001e-01 - Relative Tolerance: 1.00000000000000004e-04 -... diff --git a/tests/small/LinComprNS/input2D_drivenPulse.yaml b/tests/small/LinComprNS/input2D_drivenPulse.yaml deleted file mode 100644 index 5282e13d1a..0000000000 --- a/tests/small/LinComprNS/input2D_drivenPulse.yaml +++ /dev/null @@ -1,139 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 1 - Name: LinComprNS 2D - Solution Method: Transient - Number of PDE Equations: 3 - Dirichlet BCs: - DBC on NS NodeSet0 for DOF qFluct0: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF qFluct0: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF qFluct1: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF qFluct1: 0.00000000000000000e+00 - Body Force: - Type: Driven Pulse - Equation Set: - Type: Euler - IBP Convective Terms: true - Base Flow Data: [0.00000000000000000e+00, 0.00000000000000000e+00, 1.00000000000000000e+00, 7.14285700000000023e-01] - Initial Condition: - Function: Constant - Function Data: [0.00000000000000000e+00, 0.00000000000000000e+00, 0.00000000000000000e+00] - Parameters: - Number Of Parameters: 0 - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - Periodic_x BC: false - Periodic_y BC: false - 1D Elements: 40 - 2D Elements: 40 - 1D Scale: 2.00000000000000000e+00 - 2D Scale: 2.00000000000000000e+00 - Method: STK2D - Exodus Output File Name: lincomprns2D_unsteady_drivenPulse_out.exo - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 0.03858555555555556 - Final Time: 3.47270000000000012e+00 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-08 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 9.99999999999999979e-13 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000004e-04 - Relative Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 20 - Stratimikos: - Linear Solver Type: AztecOO - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 20 - Max Iterations: 100 - Tolerance: 1.00000000000000002e-08 - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Prec Type: ILU - Overlap: 1 - Ifpack Settings: - 'fact: level-of-fill': 1 - Regression For Response 0: - Test Value: -3.18542934347999982e-15 - Relative Tolerance: 1.00000000000000004e-04 -... diff --git a/tests/small/LinComprNS/input2Dunsteady.yaml b/tests/small/LinComprNS/input2Dunsteady.yaml deleted file mode 100644 index dffd00a571..0000000000 --- a/tests/small/LinComprNS/input2Dunsteady.yaml +++ /dev/null @@ -1,145 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Phalanx Graph Visualization Detail: 1 - Name: LinComprNS 2D - Solution Method: Transient - Number of PDE Equations: 3 - Dirichlet BCs: - DBC on NS NodeSet0 for DOF qFluct0: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF qFluct0: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF qFluct1: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF qFluct1: 0.00000000000000000e+00 - Body Force: - Type: None - Equation Set: - Type: Euler - IBP Convective Terms: true - Base Flow Data: [0.00000000000000000e+00, 0.00000000000000000e+00, 1.00000000000000000e+00, 7.14285700000000023e-01] - Initial Condition: - Function: Gaussian Pressure - Function Data: [9.55233927970380002e-03, 1.00000000000000000e+01, 1.00000000000000000e+00, 1.00000000000000000e+00] - Parameters: - Number Of Parameters: 0 - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - Periodic_x BC: true - Periodic_y BC: true - 1D Elements: 20 - 2D Elements: 20 - 1D Scale: 2.00000000000000000e+00 - 2D Scale: 2.00000000000000000e+00 - Method: STK2D - Exodus Output File Name: lincomprns2D_unsteady_out.exo - Workset Size: -1 - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 0.00865575 - Final Time: 3.46229999999999993e+00 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-08 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 9.99999999999999979e-13 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000004e-04 - Relative Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 20 - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - Belos: - VerboseObject: - Verbosity Level: medium - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.0e-08 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Prec Type: ILUT - Overlap: 1 - Ifpack2 Settings: - 'fact: ilut level-of-fill': 1.0 - Regression For Response 0: - Test Value: 2.50074505978999995e-04 - Relative Tolerance: 1.00000000000000004e-04 -... diff --git a/tests/small/LinComprNS/input2DunsteadyMMS.yaml b/tests/small/LinComprNS/input2DunsteadyMMS.yaml deleted file mode 100644 index 7f3ce08926..0000000000 --- a/tests/small/LinComprNS/input2DunsteadyMMS.yaml +++ /dev/null @@ -1,133 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 1 - Name: LinComprNS 2D - Solution Method: Transient - Number of PDE Equations: 3 - Dirichlet BCs: {} - Body Force: - Type: Unsteady Euler MMS - Equation Set: - Type: Euler - Base Flow Data: [0.00000000000000000e+00, 0.00000000000000000e+00, 1.00000000000000000e+00, 7.14285700000000023e-01] - Initial Condition: - Function: Sin-Cos - Parameters: - Number Of Parameters: 0 - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - Periodic_x BC: true - Periodic_y BC: true - 1D Elements: 20 - 2D Elements: 20 - 1D Scale: 2.00000000000000000e+00 - 2D Scale: 2.00000000000000000e+00 - Method: STK2D - Exodus Output File Name: lincomprns2D_unsteadyMMS_out.exo - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 2.00000000000000004e-02 - Final Time: 1.00000000000000000e+00 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-08 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 9.99999999999999979e-13 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000004e-04 - Relative Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 20 - Stratimikos: - Linear Solver Type: AztecOO - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 1 - Max Iterations: 100 - Tolerance: 1.00000000000000002e-08 - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Prec Type: ILU - Overlap: 1 - Ifpack Settings: - 'fact: level-of-fill': 1 - Regression For Response 0: - Test Value: 1.00000000000000003e-13 - Relative Tolerance: 1.00000000000000004e-04 -... diff --git a/tests/small/LinComprNS/input3Dunsteady.yaml b/tests/small/LinComprNS/input3Dunsteady.yaml deleted file mode 100644 index eaa36f80b1..0000000000 --- a/tests/small/LinComprNS/input3Dunsteady.yaml +++ /dev/null @@ -1,150 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 0 - Name: LinComprNS 3D - Solution Method: Transient - Number of PDE Equations: 4 - Dirichlet BCs: - DBC on NS NodeSet0 for DOF qFluct0: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF qFluct0: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF qFluct1: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF qFluct1: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF qFluct2: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF qFluct2: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF qFluct2: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF qFluct2: 0.00000000000000000e+00 - DBC on NS NodeSet4 for DOF qFluct2: 0.00000000000000000e+00 - DBC on NS NodeSet5 for DOF qFluct2: 0.00000000000000000e+00 - Body Force: - Type: None - Equation Set: - Type: Euler - Base Flow Data: [0.00000000000000000e+00, 0.00000000000000000e+00, 0.00000000000000000e+00, 1.00000000000000000e+00, 7.14285700000000023e-01] - Initial Condition: - Function: Gaussian Pressure - Function Data: [9.55233927970380002e-03, 1.00000000000000000e+01, 1.00000000000000000e+00, 1.00000000000000000e+00] - Parameters: - Number Of Parameters: 0 - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - Periodic_x BC: true - Periodic_y BC: true - Periodic_z BC: true - Workset Size: 100 - 1D Elements: 20 - 2D Elements: 20 - 3D Elements: 2 - 1D Scale: 2.00000000000000000e+00 - 2D Scale: 2.00000000000000000e+00 - 3D Scale: 1.00000000000000000e+00 - Method: STK3D - Exodus Output File Name: lincomprns3D_unsteady_out.exo - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 3.46229999999999996e-04 - Final Time: 3.46229999999999975e-03 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-02 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: NormF - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Stratimikos: - Linear Solver Type: AztecOO - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 1 - Max Iterations: 100 - Tolerance: 1.00000000000000002e-02 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000002e-02 - Output Frequency: 1 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 3 - Block Size: 1 - Num Blocks: 100 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Prec Type: ILU - Overlap: 1 - Ifpack Settings: - 'fact: level-of-fill': 1 - Regression For Response 0: - Test Value: 1.87554008772999999e-04 - Relative Tolerance: 1.00000000000000004e-04 -... diff --git a/tests/small/LinComprNS/input3DunsteadyNS.yaml b/tests/small/LinComprNS/input3DunsteadyNS.yaml deleted file mode 100644 index d2e3095fae..0000000000 --- a/tests/small/LinComprNS/input3DunsteadyNS.yaml +++ /dev/null @@ -1,163 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 1 - Name: LinComprNS 3D - Solution Method: Transient - Number of PDE Equations: 5 - Dirichlet BCs: - DBC on NS NodeSet0 for DOF qFluct0: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF qFluct0: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF qFluct1: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF qFluct1: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF qFluct2: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF qFluct2: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF qFluct2: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF qFluct2: 0.00000000000000000e+00 - DBC on NS NodeSet4 for DOF qFluct2: 0.00000000000000000e+00 - DBC on NS NodeSet5 for DOF qFluct2: 0.00000000000000000e+00 - Body Force: - Type: None - Equation Set: - Type: Navier-Stokes - Base Flow Data: [0.00000000000000000e+00, 0.00000000000000000e+00, 0.00000000000000000e+00, 1.00000000000000000e+00, 1.00000000000000000e+00] - Viscosity mu: 0.00000000000000000e+00 - Diffusivity kappa: 0.00000000000000000e+00 - Initial Condition: - Function: Gaussian Pressure - Function Data: [9.55233927970380002e-03, 1.00000000000000000e+01, 1.00000000000000000e+00, 1.00000000000000000e+00] - Parameters: - Number Of Parameters: 0 - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - Periodic_x BC: true - Periodic_y BC: true - Periodic_z BC: true - Workset Size: 100 - 1D Elements: 20 - 2D Elements: 20 - 3D Elements: 2 - 1D Scale: 2.00000000000000000e+00 - 2D Scale: 2.00000000000000000e+00 - 3D Scale: 1.00000000000000000e+00 - Method: STK3D - Exodus Output File Name: lincomprns3Dns_unsteady_out.exo - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 3.46229999999999996e-04 - Initial Order: 0 - Final Time: 3.46229999999999993e+00 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-08 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 9.99999999999999979e-13 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000004e-04 - Relative Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 20 - Stratimikos: - Linear Solver Type: AztecOO - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 1 - Max Iterations: 100 - Tolerance: 1.00000000000000002e-08 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000002e-08 - Output Frequency: 1 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 3 - Block Size: 1 - Num Blocks: 100 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Prec Type: ILU - Overlap: 1 - Ifpack Settings: - 'fact: level-of-fill': 1 - Regression For Response 0: - Test Value: 1.50041938397000007e-04 - Relative Tolerance: 1.00000000000000004e-04 -... diff --git a/tests/small/MPNIQuad2D/CMakeLists.txt b/tests/small/MPNIQuad2D/CMakeLists.txt deleted file mode 100644 index c45c511491..0000000000 --- a/tests/small/MPNIQuad2D/CMakeLists.txt +++ /dev/null @@ -1,24 +0,0 @@ -# Name the test with the directory name -get_filename_component(testNameRoot ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -#################################### -### Main tests ### -#################################### - -set(testName ${testNameRoot}) - -if (ALBANY_EPETRA AND ALBANY_STOKHOS) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - - add_test(${testName}_Epetra ${Albany.exe} input.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Stokhos;Epetra;Forward") -endif() - -if (ALBANY_MUELU AND ALBANY_STOKHOS) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - - add_test(${testName}_Tpetra ${Albany.exe} inputT.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Stokhos;Tpetra;Forward") -endif () diff --git a/tests/small/MPNIQuad2D/input.yaml b/tests/small/MPNIQuad2D/input.yaml deleted file mode 100644 index 0643452182..0000000000 --- a/tests/small/MPNIQuad2D/input.yaml +++ /dev/null @@ -1,120 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Problem: - Name: Heat 2D - Compute Sensitivities: true - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 1.50000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 1.00000000000000000e+00 - DBC on NS NodeSet2 for DOF T: 1.00000000000000000e+00 - DBC on NS NodeSet3 for DOF T: 1.00000000000000000e+00 - Source Functions: - Quadratic: - Nonlinear Factor: 2.50000000000000000e-01 - Thermal Conductivity: - Thermal Conductivity Type: Truncated KL Expansion - Number of KL Terms: 2 - Mean: 2.00000000000000011e-01 - Standard Deviation: 1.00000000000000005e-01 - Domain Lower Bounds: '{0.0, 0.0}' - Domain Upper Bounds: '{1.0, 1.0}' - Correlation Lengths: '{1.0, 1.0}' - Parameters: - Number Of Parameters: 2 - Parameter 0: - Type: Scalar - Name: Thermal Conductivity KL Random Variable 0 - Parameter 1: - Type: Scalar - Name: Thermal Conductivity KL Random Variable 1 - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - 1D Elements: 20 - 2D Elements: 20 - Method: STK2D - Piro: - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 9.99999999999999954e-07 - Relative Tolerance: 9.99999999999999954e-07 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 50 - Output Frequency: 20 - Max Iterations: 250 - Tolerance: 1.00000000000000004e-04 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000004e-04 - Output Frequency: 20 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 250 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: ML - Preconditioner Types: - ML: - Base Method Defaults: none - ML Settings: - default values: SA - 'smoother: type': ML symmetric Gauss-Seidel - 'smoother: pre or post': both - 'coarse: type': Amesos-KLU - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Sensitivity For Parameter 0: - Test Value: -2.48600000000000001e-02 - Sensitivity For Parameter 1: - Test Value: -7.34899999999999962e-03 - Test Value: 1.18229999999999990e+00 - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/MPNIQuad2D/inputT.yaml b/tests/small/MPNIQuad2D/inputT.yaml deleted file mode 100644 index 98e555a1e1..0000000000 --- a/tests/small/MPNIQuad2D/inputT.yaml +++ /dev/null @@ -1,118 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Problem: - Name: Heat 2D - Compute Sensitivities: true - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 1.50000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 1.00000000000000000e+00 - DBC on NS NodeSet2 for DOF T: 1.00000000000000000e+00 - DBC on NS NodeSet3 for DOF T: 1.00000000000000000e+00 - Source Functions: - Quadratic: - Nonlinear Factor: 2.50000000000000000e-01 - Thermal Conductivity: - Thermal Conductivity Type: Truncated KL Expansion - Number of KL Terms: 2 - Mean: 2.00000000000000011e-01 - Standard Deviation: 1.00000000000000005e-01 - Domain Lower Bounds: '{0.0, 0.0}' - Domain Upper Bounds: '{1.0, 1.0}' - Correlation Lengths: '{1.0, 1.0}' - Parameters: - Number Of Parameters: 2 - Parameter 0: - Type: Scalar - Name: Thermal Conductivity KL Random Variable 0 - Parameter 1: - Type: Scalar - Name: Thermal Conductivity KL Random Variable 1 - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - 1D Elements: 20 - 2D Elements: 20 - Method: STK2D - Piro: - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 9.99999999999999954e-07 - Relative Tolerance: 9.99999999999999954e-07 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 50 - Output Frequency: 20 - Max Iterations: 250 - Tolerance: 1.00000000000000004e-04 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000004e-04 - Output Frequency: 20 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 250 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: MueLu - Preconditioner Types: - MueLu: - multigrid algorithm: sa - 'smoother: type': MueLu symmetric Gauss-Seidel - 'smoother: pre or post': both - 'coarse: type': Amesos-KLU - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Sensitivity For Parameter 0: - Test Value: -2.48600000000000001e-02 - Sensitivity For Parameter 1: - Test Value: -7.34899999999999962e-03 - Test Value: 1.18229999999999990e+00 - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/MatPro2D/CMakeLists.txt b/tests/small/MatPro2D/CMakeLists.txt deleted file mode 100644 index 56807b3b3f..0000000000 --- a/tests/small/MatPro2D/CMakeLists.txt +++ /dev/null @@ -1,19 +0,0 @@ - -# 1. Copy Input file from source to binary dir -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) -# 2. Name the test with the directory name -get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR} NAME) -# 3. Create the test with this name and standard executable -if (ALBANY_EPETRA) -add_test(${testName} ${Albany.exe}) -endif() - -# 6. Repeat process for Analysis problems if "inputAnalysis.yaml" exists -if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/inputAnalysis.yaml) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputAnalysis.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputAnalysis.yaml COPYONLY) - - get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR}_Analysis NAME) - add_test(${testName} ${AlbanyAnalysis.exe}) -endif () diff --git a/tests/small/MatPro2D/input.yaml b/tests/small/MatPro2D/input.yaml deleted file mode 100644 index 5a9e6066ed..0000000000 --- a/tests/small/MatPro2D/input.yaml +++ /dev/null @@ -1,112 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Problem: - Name: NonlinearElasticity 2D - Solution Method: Steady - Phalanx Graph Visualization Detail: 0 - Dirichlet BCs: - DBC on NS NodeSet0 for DOF X: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF X: 1.00000000000000005e-01 - DBC on NS NodeSet2 for DOF Y: 0.00000000000000000e+00 - Elastic Modulus: - Elastic Modulus Type: Constant - Value: 1.00000000000000000e+03 - Hardening Modulus: - Hardening Modulus Type: Constant - Value: 1.00000000000000000e+02 - Yield Strength: - Yield Strength Type: Constant - Value: 1.00000000000000000e+01 - Material Model: - Model Name: J2 - Poissons Ratio: - Poissons Ratio Type: Constant - Value: 2.50000000000000000e-01 - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - 1D Elements: 4 - 2D Elements: 4 - Workset Size: 300 - Method: STK2D - Exodus Output File Name: quad2d.e - Piro: - LOCA: - Bifurcation: {} - Constraints: {} - Predictor: - Method: Tangent - Stepper: - Initial Value: 0.00000000000000000e+00 - Continuation Parameter: DBC on NS NodeSet1 for DOF X - Max Steps: 10 - Max Value: 1.00000000000000005e-01 - Min Value: 0.00000000000000000e+00 - Compute Eigenvalues: false - Eigensolver: - Method: Anasazi - Operator: Jacobian Inverse - Num Eigenvalues: 0 - Step Size: - Initial Step Size: 1.00000000000000002e-02 - Method: Constant - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000003e-10 - Output Frequency: 0 - Output Style: 0 - Verbosity: 0 - Maximum Iterations: 200 - Block Size: 1 - Num Blocks: 200 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 2 - Prec Type: ILU - Ifpack Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Test Value: 5.09341113040999958e-03 - Relative Tolerance: 9.99999999999999954e-08 -... diff --git a/tests/small/MatPro2D/quad2d.exo b/tests/small/MatPro2D/quad2d.exo deleted file mode 100644 index c882e35357..0000000000 Binary files a/tests/small/MatPro2D/quad2d.exo and /dev/null differ diff --git a/tests/small/MatPro2D/quad2d.exo.4.0 b/tests/small/MatPro2D/quad2d.exo.4.0 deleted file mode 100644 index 8e8831cb19..0000000000 Binary files a/tests/small/MatPro2D/quad2d.exo.4.0 and /dev/null differ diff --git a/tests/small/MatPro2D/quad2d.exo.4.1 b/tests/small/MatPro2D/quad2d.exo.4.1 deleted file mode 100644 index 4e54f90e7d..0000000000 Binary files a/tests/small/MatPro2D/quad2d.exo.4.1 and /dev/null differ diff --git a/tests/small/MatPro2D/quad2d.exo.4.2 b/tests/small/MatPro2D/quad2d.exo.4.2 deleted file mode 100644 index dd74dcc02a..0000000000 Binary files a/tests/small/MatPro2D/quad2d.exo.4.2 and /dev/null differ diff --git a/tests/small/MatPro2D/quad2d.exo.4.3 b/tests/small/MatPro2D/quad2d.exo.4.3 deleted file mode 100644 index 664b346a90..0000000000 Binary files a/tests/small/MatPro2D/quad2d.exo.4.3 and /dev/null differ diff --git a/tests/small/NSRayleighBernard2D/CMakeLists.txt b/tests/small/NSRayleighBernard2D/CMakeLists.txt deleted file mode 100644 index d9b510670a..0000000000 --- a/tests/small/NSRayleighBernard2D/CMakeLists.txt +++ /dev/null @@ -1,23 +0,0 @@ -if (ALBANY_EPETRA) - # Name the test with the directory name - get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR} NAME) - - # Copy input and mesh files from source to binary dir - - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/ns-m4-bKL.par - ${CMAKE_CURRENT_BINARY_DIR}/ns-m4-bKL.par COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/ns-m4-bKL.par.4.0 - ${CMAKE_CURRENT_BINARY_DIR}/ns-m4-bKL.par.4.0 COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/ns-m4-bKL.par.4.1 - ${CMAKE_CURRENT_BINARY_DIR}/ns-m4-bKL.par.4.1 COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/ns-m4-bKL.par.4.2 - ${CMAKE_CURRENT_BINARY_DIR}/ns-m4-bKL.par.4.2 COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/ns-m4-bKL.par.4.3 - ${CMAKE_CURRENT_BINARY_DIR}/ns-m4-bKL.par.4.3 COPYONLY) - - # Create the test - add_test(${testName} ${Albany.exe} input.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "Demo;Epetra;Forward") -endif() diff --git a/tests/small/NSRayleighBernard2D/input.yaml b/tests/small/NSRayleighBernard2D/input.yaml deleted file mode 100644 index dfa44bffea..0000000000 --- a/tests/small/NSRayleighBernard2D/input.yaml +++ /dev/null @@ -1,153 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Solution Method: Transient - Phalanx Graph Visualization Detail: 0 - Name: NavierStokes 2D - Compute Sensitivities: true - Heat: - Variable Type: DOF - Volumetric Expansion Coefficient: - Type: Constant - Value: 3.00000000000000000e+03 - Body Force: - Type: Boussinesq - Gravity Vector: [0.00000000000000000e+00, -1.00000000000000000e+00] - Initial Condition: - Function: Constant - Function Data: [1.00000000000000000e+00, 1.00000000000000000e+00, 1.00000000000000000e+00, 1.00000000000000000e+00] - Dirichlet BCs: - DBC on NS nodelist_2 for DOF T: 1.00000000000000000e+00 - DBC on NS nodelist_4 for DOF T: 0.00000000000000000e+00 - DBC on NS nodelist_5 for DOF p: 0.00000000000000000e+00 - DBC on NS nodelist_1 for DOF ux: 0.00000000000000000e+00 - DBC on NS nodelist_2 for DOF ux: 0.00000000000000000e+00 - DBC on NS nodelist_3 for DOF ux: 0.00000000000000000e+00 - DBC on NS nodelist_4 for DOF ux: 0.00000000000000000e+00 - DBC on NS nodelist_1 for DOF uy: 0.00000000000000000e+00 - DBC on NS nodelist_2 for DOF uy: 0.00000000000000000e+00 - DBC on NS nodelist_3 for DOF uy: 0.00000000000000000e+00 - DBC on NS nodelist_4 for DOF uy: 0.00000000000000000e+00 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Scalar - Name: Volumetric Expansion Coefficient - Response Functions: - Number Of Responses: 1 - Response 0: - Equation: 0 - Type: Scalar Response - Name: Solution Max Value - Discretization: - Method: Ioss - Exodus Input File Name: ns-m4-bKL.par - Exodus Output File Name: ns_tempus_out.exo - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 3.00000000000000023e-02 - Final Time: 3.0e+00 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-02 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: NormF - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 50 - Output Frequency: 20 - Max Iterations: 250 - Tolerance: 9.99999999999999954e-07 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 9.99999999999999954e-07 - Output Frequency: 20 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 250 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - ML: - Base Method Defaults: none - ML Settings: - default values: SA - 'smoother: type': ML symmetric Gauss-Seidel - 'smoother: pre or post': both - 'coarse: type': Amesos-KLU - PDE equations: 4 - Regression For Response 0: - Test Value: 4.636158137417e-01 - Relative Tolerance: 1.0e-06 - Absolute Tolerance: 1.0e-06 -... diff --git a/tests/small/NSRayleighBernard2D/nem_spread.inp b/tests/small/NSRayleighBernard2D/nem_spread.inp deleted file mode 100644 index d41ff60457..0000000000 --- a/tests/small/NSRayleighBernard2D/nem_spread.inp +++ /dev/null @@ -1,9 +0,0 @@ - -Input FEM file = ns.exo -LB file = ns-m4-bKL.nemI -Debug = 1 -Restart Time list = off -Reserve space = nodal=1, elemental=0, global=0 -Parallel Disk Info = number=1 -Parallel file location = root=tmp,subdir=.. - diff --git a/tests/small/NSRayleighBernard2D/ns-m4-bKL.nemI b/tests/small/NSRayleighBernard2D/ns-m4-bKL.nemI deleted file mode 100644 index fb68f98dab..0000000000 Binary files a/tests/small/NSRayleighBernard2D/ns-m4-bKL.nemI and /dev/null differ diff --git a/tests/small/NSRayleighBernard2D/ns-m4-bKL.par b/tests/small/NSRayleighBernard2D/ns-m4-bKL.par deleted file mode 100644 index 04b8129499..0000000000 Binary files a/tests/small/NSRayleighBernard2D/ns-m4-bKL.par and /dev/null differ diff --git a/tests/small/NSRayleighBernard2D/ns-m4-bKL.par.4.0 b/tests/small/NSRayleighBernard2D/ns-m4-bKL.par.4.0 deleted file mode 100644 index dea1dfe8f3..0000000000 Binary files a/tests/small/NSRayleighBernard2D/ns-m4-bKL.par.4.0 and /dev/null differ diff --git a/tests/small/NSRayleighBernard2D/ns-m4-bKL.par.4.1 b/tests/small/NSRayleighBernard2D/ns-m4-bKL.par.4.1 deleted file mode 100644 index 985922e49e..0000000000 Binary files a/tests/small/NSRayleighBernard2D/ns-m4-bKL.par.4.1 and /dev/null differ diff --git a/tests/small/NSRayleighBernard2D/ns-m4-bKL.par.4.2 b/tests/small/NSRayleighBernard2D/ns-m4-bKL.par.4.2 deleted file mode 100644 index 4a2216d85f..0000000000 Binary files a/tests/small/NSRayleighBernard2D/ns-m4-bKL.par.4.2 and /dev/null differ diff --git a/tests/small/NSRayleighBernard2D/ns-m4-bKL.par.4.3 b/tests/small/NSRayleighBernard2D/ns-m4-bKL.par.4.3 deleted file mode 100644 index 166712c5cc..0000000000 Binary files a/tests/small/NSRayleighBernard2D/ns-m4-bKL.par.4.3 and /dev/null differ diff --git a/tests/small/NSRayleighBernard2D/ns.exo b/tests/small/NSRayleighBernard2D/ns.exo deleted file mode 100644 index 04b8129499..0000000000 Binary files a/tests/small/NSRayleighBernard2D/ns.exo and /dev/null differ diff --git a/tests/small/NSReactor/CMakeLists.txt b/tests/small/NSReactor/CMakeLists.txt deleted file mode 100644 index bcce40cb4e..0000000000 --- a/tests/small/NSReactor/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -if (ALBANY_EPETRA) - - # Copy input and mesh files from source to binary dir - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/reactor.yaml - ${CMAKE_CURRENT_BINARY_DIR}/reactor.yaml COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/pipe.yaml - ${CMAKE_CURRENT_BINARY_DIR}/pipe.yaml COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/pipe_coarse.exo.4.0 - ${CMAKE_CURRENT_BINARY_DIR}/pipe_coarse.exo.4.0 COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/pipe_coarse.exo.4.1 - ${CMAKE_CURRENT_BINARY_DIR}/pipe_coarse.exo.4.1 COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/pipe_coarse.exo.4.2 - ${CMAKE_CURRENT_BINARY_DIR}/pipe_coarse.exo.4.2 COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/pipe_coarse.exo.4.3 - ${CMAKE_CURRENT_BINARY_DIR}/pipe_coarse.exo.4.3 COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/reactor_coarse.exo.4.0 - ${CMAKE_CURRENT_BINARY_DIR}/reactor_coarse.exo.4.0 COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/reactor_coarse.exo.4.1 - ${CMAKE_CURRENT_BINARY_DIR}/reactor_coarse.exo.4.1 COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/reactor_coarse.exo.4.2 - ${CMAKE_CURRENT_BINARY_DIR}/reactor_coarse.exo.4.2 COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/reactor_coarse.exo.4.3 - ${CMAKE_CURRENT_BINARY_DIR}/reactor_coarse.exo.4.3 COPYONLY) - - # Create the tests with this name and standard executable - add_test(${testName}_Pipe_Epetra ${Albany.exe} pipe.yaml) - set_tests_properties(${testName}_Pipe_Epetra PROPERTIES LABELS "Demo;Epetra;Forward") - - add_test(${testName}_Reactor_Epetra ${Albany.exe} reactor.yaml) - set_tests_properties(${testName}_Reactor_Epetra PROPERTIES LABELS "Demo;Epetra;Forward") -endif() diff --git a/tests/small/NSReactor/network_coupled.yaml b/tests/small/NSReactor/network_coupled.yaml deleted file mode 100644 index 5d0579651f..0000000000 --- a/tests/small/NSReactor/network_coupled.yaml +++ /dev/null @@ -1,87 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Coupled System: - Model XML Files: [pipe.yaml, reactor.yaml] - Network Model: Reactor Network - Piro: - Network Coupling Parameter Indices: [0, 0] - Network Coupling Response Indices: [0, 0] - Solver Type: NOX - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 9.99999999999999954e-07 - Relative Tolerance: 9.99999999999999954e-07 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Linear Solver: - Max Iterations: 1000 - Tolerance: 9.99999999999999979e-13 - Write Linear System: false - Forcing Term Method: Constant - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: AztecOO - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 30 - Output Frequency: 20 - Max Iterations: 250 - Tolerance: 9.99999999999999979e-13 - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Prec Type: Amesos - Overlap: 4 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Absolute Tolerance: 1.00000000000000008e-05 - Test Value: 2.23169000000000004e+01 - Relative Tolerance: 1.00000000000000002e-03 - Regression For Response 1: - Absolute Tolerance: 1.00000000000000008e-05 - Test Value: -1.77710000000000007e+02 - Relative Tolerance: 1.00000000000000002e-03 - Regression For Response 2: - Absolute Tolerance: 1.00000000000000008e-05 - Test Value: 1.77710000000000007e+02 - Relative Tolerance: 1.00000000000000002e-03 - Regression For Response 3: - Absolute Tolerance: 1.00000000000000008e-05 - Test Value: -2.23169000000000004e+01 - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/NSReactor/pipe.yaml b/tests/small/NSReactor/pipe.yaml deleted file mode 100644 index 68a49825f1..0000000000 --- a/tests/small/NSReactor/pipe.yaml +++ /dev/null @@ -1,151 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 0 - Name: NavierStokes 2D - Compute Sensitivities: true - Heat: - Variable Type: DOF - Thermal Conductivity: - Type: Constant - Value: 1.00000000000000005e-01 - Dirichlet BCs: - DBC on NS top for DOF ux: 0.00000000000000000e+00 - DBC on NS top for DOF uy: 0.00000000000000000e+00 - DBC on NS top for DOF T: 0.00000000000000000e+00 - DBC on NS bottom for DOF ux: 0.00000000000000000e+00 - DBC on NS bottom for DOF uy: 0.00000000000000000e+00 - DBC on NS bottom for DOF T: 0.00000000000000000e+00 - DBC on NS inlet for DOF ux: 1.00000000000000000e+02 - DBC on NS inlet for DOF uy: 0.00000000000000000e+00 - DBC on NS outlet for DOF uy: 0.00000000000000000e+00 - Neumann BCs: - NBC on SS inlet_ss for DOF T set dudn: [-7.00000000000000000e+00] - NBC on SS outlet_ss for DOF T set dudn: [3.70000000000000000e+01] - Parameters: - Number Of Parameters: 2 - Parameter 0: - Type: Scalar - Name: NBC on SS inlet_ss for DOF T set dudn - Parameter 1: - Type: Scalar - Name: NBC on SS outlet_ss for DOF T set dudn - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Aggregate Responses - Response 1: PHAL Field Integral - Response 0: PHAL Field Integral - Number: 2 - ResponseParams 1: - Field Name: Temperature - x min: 9.00000000000000022e-01 - x max: 1.00000000000000000e+00 - y min: 4.50000000000000011e-01 - y max: 5.50000000000000044e-01 - Length Scaling: 1.00000000000000000e+01 - ResponseParams 0: - Field Name: Temperature - x min: 0.00000000000000000e+00 - x max: 1.00000000000000005e-01 - y min: 4.50000000000000011e-01 - y max: 5.50000000000000044e-01 - Length Scaling: 1.00000000000000000e+01 - Type: Scalar Response - Discretization: - Method: Ioss - Workset Size: 10 - Exodus Input File Name: pipe_coarse.exo - Exodus Output File Name: pipe_coarse-out.exo - Piro: - Print Convergence Stats: false - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 9.99999999999999954e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000002e-03 - Relative Tolerance: 1.00000000000000002e-03 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: AztecOO - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 50 - Output Frequency: 20 - Max Iterations: 500 - Tolerance: 9.99999999999999954e-07 - VerboseObject: - Verbosity Level: none - Preconditioner Type: Ifpack - Preconditioner Types: - ML: - Base Method Defaults: none - ML Settings: - default values: SA - 'smoother: type': ML symmetric Gauss-Seidel - 'smoother: pre or post': both - 'coarse: type': Amesos-KLU - PDE equations: 4 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: false - Details: false - Linear Solver Details: false - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Absolute Tolerance: 1.00000000000000008e-05 - Sensitivity For Parameter 0: - Test Value: 6.17438999999999960e-01 - Sensitivity For Parameter 1: - Test Value: 0.00000000000000000e+00 - Test Value: -4.32207000000000007e+00 - Relative Tolerance: 1.00000000000000002e-03 - Regression For Response 1: - Absolute Tolerance: 1.00000000000000008e-05 - Sensitivity For Parameter 0: - Test Value: 2.36918999999999990e-01 - Sensitivity For Parameter 1: - Test Value: 1.03669999999999999e-03 - Test Value: -1.62006999999999989e+00 - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/NSReactor/pipe_coarse.exo b/tests/small/NSReactor/pipe_coarse.exo deleted file mode 100644 index 2770c7da59..0000000000 Binary files a/tests/small/NSReactor/pipe_coarse.exo and /dev/null differ diff --git a/tests/small/NSReactor/pipe_coarse.exo.4.0 b/tests/small/NSReactor/pipe_coarse.exo.4.0 deleted file mode 100644 index f3dab747b3..0000000000 Binary files a/tests/small/NSReactor/pipe_coarse.exo.4.0 and /dev/null differ diff --git a/tests/small/NSReactor/pipe_coarse.exo.4.1 b/tests/small/NSReactor/pipe_coarse.exo.4.1 deleted file mode 100644 index c1c0c4a93f..0000000000 Binary files a/tests/small/NSReactor/pipe_coarse.exo.4.1 and /dev/null differ diff --git a/tests/small/NSReactor/pipe_coarse.exo.4.2 b/tests/small/NSReactor/pipe_coarse.exo.4.2 deleted file mode 100644 index 3e46c9bb30..0000000000 Binary files a/tests/small/NSReactor/pipe_coarse.exo.4.2 and /dev/null differ diff --git a/tests/small/NSReactor/pipe_coarse.exo.4.3 b/tests/small/NSReactor/pipe_coarse.exo.4.3 deleted file mode 100644 index 3083d72e9a..0000000000 Binary files a/tests/small/NSReactor/pipe_coarse.exo.4.3 and /dev/null differ diff --git a/tests/small/NSReactor/reactor.yaml b/tests/small/NSReactor/reactor.yaml deleted file mode 100644 index b4f684d676..0000000000 --- a/tests/small/NSReactor/reactor.yaml +++ /dev/null @@ -1,171 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Phalanx Graph Visualization Detail: 0 - Name: NavierStokes 2D - Compute Sensitivities: true - Heat: - Variable Type: DOF - Body Force: - Type: Boussinesq - Gravity Vector: [0.00000000000000000e+00, -1.00000000000000000e+00] - Source Functions: - Constant: - Value: 5.00000000000000000e+02 - Dirichlet BCs: - DBC on NS bottom for DOF ux: 0.00000000000000000e+00 - DBC on NS bottom for DOF uy: 0.00000000000000000e+00 - DBC on NS bottom for DOF T: 0.00000000000000000e+00 - DBC on NS top for DOF ux: 0.00000000000000000e+00 - DBC on NS top for DOF uy: 0.00000000000000000e+00 - DBC on NS top for DOF T: 0.00000000000000000e+00 - DBC on NS upperleft for DOF ux: 0.00000000000000000e+00 - DBC on NS upperleft for DOF uy: 0.00000000000000000e+00 - DBC on NS upperleft for DOF T: 0.00000000000000000e+00 - DBC on NS lowerleft for DOF ux: 0.00000000000000000e+00 - DBC on NS lowerleft for DOF uy: 0.00000000000000000e+00 - DBC on NS lowerleft for DOF T: 0.00000000000000000e+00 - DBC on NS lowerright for DOF ux: 0.00000000000000000e+00 - DBC on NS lowerright for DOF uy: 0.00000000000000000e+00 - DBC on NS lowerright for DOF T: 0.00000000000000000e+00 - DBC on NS upperright for DOF ux: 0.00000000000000000e+00 - DBC on NS upperright for DOF uy: 0.00000000000000000e+00 - DBC on NS upperright for DOF T: 0.00000000000000000e+00 - DBC on NS inlet for DOF ux: 1.00000000000000000e+02 - DBC on NS inlet for DOF uy: 0.00000000000000000e+00 - DBC on NS outlet for DOF uy: 0.00000000000000000e+00 - Neumann BCs: - NBC on SS inlet_ss for DOF T set dudn: [-3.70000000000000000e+01] - NBC on SS outlet_ss for DOF T set dudn: [7.00000000000000000e+00] - Parameters: - Number Of Parameters: 2 - Parameter 0: - Type: Scalar - Name: NBC on SS inlet_ss for DOF T set dudn - Parameter 1: - Type: Scalar - Name: NBC on SS outlet_ss for DOF T set dudn - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Aggregate Responses - Response 1: PHAL Field Integral - Response 0: PHAL Field Integral - Number: 2 - ResponseParams 1: - Field Name: Temperature - x min: 9.00000000000000022e-01 - x max: 1.00000000000000000e+00 - y min: 4.50000000000000011e-01 - y max: 5.50000000000000044e-01 - Length Scaling: 1.00000000000000000e+01 - ResponseParams 0: - Field Name: Temperature - x min: 0.00000000000000000e+00 - x max: 1.00000000000000005e-01 - y min: 4.50000000000000011e-01 - y max: 5.50000000000000044e-01 - Length Scaling: 1.00000000000000000e+01 - Type: Scalar Response - Discretization: - Method: Ioss - Workset Size: 10 - Exodus Input File Name: reactor_coarse.exo - Exodus Output File Name: reactor_coarse-out.exo - Piro: - Print Convergence Stats: false - NOX: - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: Combo - Combo Type: AND - Number of Tests: 2 - Test 0: - Test Type: NormF - Norm Type: Two Norm - Scale Type: Scaled - Tolerance: 9.99999999999999954e-08 - Test 1: - Test Type: NormWRMS - Absolute Tolerance: 1.00000000000000002e-03 - Relative Tolerance: 1.00000000000000002e-03 - Test 1: - Test Type: MaxIters - Maximum Iterations: 20 - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Linear Solver: - Write Linear System: false - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: AztecOO - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 50 - Output Frequency: 20 - Max Iterations: 500 - Tolerance: 9.99999999999999954e-07 - VerboseObject: - Verbosity Level: none - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 8 - Prec Type: ILU - Ifpack Settings: - 'fact: level-of-fill': 4 - ML: - Base Method Defaults: none - ML Settings: - default values: SA - 'smoother: type': ML symmetric Gauss-Seidel - 'smoother: pre or post': both - 'coarse: type': Amesos-KLU - PDE equations: 4 - Rescue Bad Newton Solve: true - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: false - Details: false - Linear Solver Details: false - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Absolute Tolerance: 1.00000000000000008e-05 - Sensitivity For Parameter 0: - Test Value: 2.36729000000000001e-02 - Sensitivity For Parameter 1: - Test Value: 3.06330999999999983e-09 - Test Value: 2.02612999999999994e-02 - Relative Tolerance: 1.00000000000000002e-03 - Regression For Response 1: - Absolute Tolerance: 1.00000000000000008e-05 - Sensitivity For Parameter 0: - Test Value: 7.63868000000000012e-03 - Sensitivity For Parameter 1: - Test Value: 2.19156999999999988e-03 - Test Value: 1.22034000000000002e+01 - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/NSReactor/reactor_coarse.exo b/tests/small/NSReactor/reactor_coarse.exo deleted file mode 100644 index f2d86b8901..0000000000 Binary files a/tests/small/NSReactor/reactor_coarse.exo and /dev/null differ diff --git a/tests/small/NSReactor/reactor_coarse.exo.4.0 b/tests/small/NSReactor/reactor_coarse.exo.4.0 deleted file mode 100644 index bbc3eaaf4a..0000000000 Binary files a/tests/small/NSReactor/reactor_coarse.exo.4.0 and /dev/null differ diff --git a/tests/small/NSReactor/reactor_coarse.exo.4.1 b/tests/small/NSReactor/reactor_coarse.exo.4.1 deleted file mode 100644 index 0088299364..0000000000 Binary files a/tests/small/NSReactor/reactor_coarse.exo.4.1 and /dev/null differ diff --git a/tests/small/NSReactor/reactor_coarse.exo.4.2 b/tests/small/NSReactor/reactor_coarse.exo.4.2 deleted file mode 100644 index 4092015b93..0000000000 Binary files a/tests/small/NSReactor/reactor_coarse.exo.4.2 and /dev/null differ diff --git a/tests/small/NSReactor/reactor_coarse.exo.4.3 b/tests/small/NSReactor/reactor_coarse.exo.4.3 deleted file mode 100644 index 910585078f..0000000000 Binary files a/tests/small/NSReactor/reactor_coarse.exo.4.3 and /dev/null differ diff --git a/tests/small/PNP/CMakeLists.txt b/tests/small/PNP/CMakeLists.txt deleted file mode 100644 index c81e5753ab..0000000000 --- a/tests/small/PNP/CMakeLists.txt +++ /dev/null @@ -1,18 +0,0 @@ -# Name the test with the directory name -get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR}_test2D NAME) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_test2D.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_test2D.yaml COPYONLY) - - add_test(${testName}_Epetra ${Albany.exe} input_test2D.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Demo;Epetra;Forward") -endif() - -if (ALBANY_IFPACK2) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_test2DT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_test2DT.yaml COPYONLY) - - add_test(${testName}_Tpetra ${Albany.exe} input_test2DT.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Demo;Tpetra;Forward") -endif () diff --git a/tests/small/PNP/input_test2D.yaml b/tests/small/PNP/input_test2D.yaml deleted file mode 100644 index d909e2bc30..0000000000 --- a/tests/small/PNP/input_test2D.yaml +++ /dev/null @@ -1,83 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: PNP 2D - Compute Sensitivities: true - Solution Method: Steady - Number of Species: 2 - Phalanx Graph Visualization Detail: 1 - Dirichlet BCs: - DBC on NS NodeSet0 for DOF Phi: 2.00000000000000000e+00 - DBC on NS NodeSet1 for DOF Phi: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF C1: 5.00000000000000000e+00 - DBC on NS NodeSet1 for DOF C1: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF C2: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF C2: 3.00000000000000000e+00 - Permittivity: - Permittivity Type: Constant - Value: 1.00000000000000000e+00 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Scalar - Name: DBC on NS NodeSet0 for DOF Phi - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - 1D Elements: 50 - 2D Elements: 10 - Method: STK2D - Exodus Output File Name: pnp_test2d.exo - Cubature Degree: 3 - Piro: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000002e-08 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 100 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Sensitivity For Parameter 0: - Test Value: 4.75051109000000013e-02 - Test Value: 1.15708755700000009e+00 - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/PNP/input_test2DT.yaml b/tests/small/PNP/input_test2DT.yaml deleted file mode 100644 index c5576af1bb..0000000000 --- a/tests/small/PNP/input_test2DT.yaml +++ /dev/null @@ -1,80 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: PNP 2D - Compute Sensitivities: true - Solution Method: Steady - Number of Species: 2 - Phalanx Graph Visualization Detail: 1 - Dirichlet BCs: - DBC on NS NodeSet0 for DOF Phi: 2.00000000000000000e+00 - DBC on NS NodeSet1 for DOF Phi: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF C1: 5.00000000000000000e+00 - DBC on NS NodeSet1 for DOF C1: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF C2: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF C2: 3.00000000000000000e+00 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Scalar - Name: DBC on NS NodeSet0 for DOF Phi - Response Functions: - Number Of Responses: 1 - Response 0: - Type: Scalar Response - Name: Solution Average - Discretization: - 1D Elements: 50 - 2D Elements: 10 - Method: STK2D - Exodus Output File Name: pnp_test2d_tpetra.exo - Cubature Degree: 3 - Piro: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000002e-08 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 100 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 1 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Sensitivity For Parameter 0: - Test Value: 4.75051109000000013e-02 - Test Value: 1.15708755700000009e+00 - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/SteadyHeat1D/CMakeLists.txt b/tests/small/SteadyHeat1D/CMakeLists.txt deleted file mode 100644 index cd0fb83044..0000000000 --- a/tests/small/SteadyHeat1D/CMakeLists.txt +++ /dev/null @@ -1,28 +0,0 @@ -# The root name for the tests in this directory is the directory name -get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -if (ALBANY_EPETRA) - # Copy Input file from source to binary dir - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - # Create the test with this name and standard executable - add_test(${testName}_Epetra ${Albany.exe} input.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Basic;Epetra;Forward") - - # Additional files for restart testing - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input_restart.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input_restart.yaml COPYONLY) - - add_test(${testName}_restart ${Albany.exe} input_restart.yaml) - set_tests_properties(${testName}_restart PROPERTIES LABELS "Basic;Epetra;Forward") - set_tests_properties(${testName}_restart PROPERTIES DEPENDS ${testName}_Epetra) -endif() - -if (ALBANY_IFPACK2) - # Copy Input file from source to binary dir - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - # Create the test with this name and standard executable - add_test(${testName}_Tpetra ${Albany.exe} inputT.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Basic;Tpetra;Forward") -endif () diff --git a/tests/small/SteadyHeat1D/input.yaml b/tests/small/SteadyHeat1D/input.yaml deleted file mode 100644 index 408f1d647b..0000000000 --- a/tests/small/SteadyHeat1D/input.yaml +++ /dev/null @@ -1,118 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 1D - Compute Sensitivities: true - Solution Method: Steady - Phalanx Graph Visualization Detail: 1 - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 2.00000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 1.00000000000000006e-01 - Source Functions: - Quadratic: - Nonlinear Factor: 2.00000000000000000e+00 - Parameters: - Number Of Parameters: 3 - Parameter 0: - Name: DBC on NS NodeSet0 for DOF T - Parameter 1: - Name: DBC on NS NodeSet1 for DOF T - Parameter 2: - Name: Quadratic Nonlinear Factor - Response Functions: - Number Of Responses: 3 - Response 0: - Name: Solution Average - Response 1: - Name: Solution Two Norm - Response 2: - Name: Solution Max Value - Discretization: - 1D Elements: 100 - Method: STK1D - Regression For Response 0: - Test Value: 1.54847000000000001e+00 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Value: 1.56217999999999990e+00 - Sensitivity For Parameter 1: - Test Value: 1.28730000000000011e+00 - Sensitivity For Parameter 2: - Test Value: 8.52306000000000008e-01 - Regression For Response 1: - Test Value: 1.69218499999999992e+01 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Value: 1.66396000000000015e+01 - Sensitivity For Parameter 1: - Test Value: 1.14771699999999992e+01 - Sensitivity For Parameter 2: - Test Value: 8.75256599999999985e+00 - Regression For Response 2: - Test Value: 2.20519499999999979e+00 - Relative Tolerance: 1.00000000000000005e-04 - Piro: - LOCA: - Bifurcation: { } - Constraints: { } - Predictor: - First Step Predictor: { } - Last Step Predictor: { } - Step Size: { } - Stepper: - Eigensolver: { } - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 2 - Prec Type: ILU - Ifpack Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 2 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/SteadyHeat1D/inputT.yaml b/tests/small/SteadyHeat1D/inputT.yaml deleted file mode 100644 index 576028aaee..0000000000 --- a/tests/small/SteadyHeat1D/inputT.yaml +++ /dev/null @@ -1,118 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: Heat 1D - Compute Sensitivities: true - Solution Method: Steady - Phalanx Graph Visualization Detail: 1 - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 2.00000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 1.00000000000000006e-01 - Source Functions: - Quadratic: - Nonlinear Factor: 2.00000000000000000e+00 - Parameters: - Number Of Parameters: 3 - Parameter 0: - Name: DBC on NS NodeSet0 for DOF T - Parameter 1: - Name: DBC on NS NodeSet1 for DOF T - Parameter 2: - Name: Quadratic Nonlinear Factor - Response Functions: - Number Of Responses: 3 - Response 0: - Name: Solution Average - Response 1: - Name: Solution Two Norm - Response 2: - Name: Solution Max Value - Discretization: - 1D Elements: 100 - Method: STK1D - Regression For Response 0: - Test Value: 1.54847000000000001e+00 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Value: 1.56217999999999990e+00 - Sensitivity For Parameter 1: - Test Value: 1.28730000000000011e+00 - Sensitivity For Parameter 2: - Test Value: 8.52306000000000008e-01 - Regression For Response 1: - Test Value: 1.69218499999999992e+01 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Value: 1.66396000000000015e+01 - Sensitivity For Parameter 1: - Test Value: 1.14771699999999992e+01 - Sensitivity For Parameter 2: - Test Value: 8.75256599999999985e+00 - Regression For Response 2: - Test Value: 2.20519499999999979e+00 - Relative Tolerance: 1.00000000000000005e-04 - Piro: - LOCA: - Bifurcation: { } - Constraints: { } - Predictor: - First Step Predictor: { } - Last Step Predictor: { } - Step Size: { } - Stepper: - Eigensolver: { } - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 2 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 2 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/SteadyHeat1D/input_restart.yaml b/tests/small/SteadyHeat1D/input_restart.yaml deleted file mode 100644 index 5808f5beb2..0000000000 --- a/tests/small/SteadyHeat1D/input_restart.yaml +++ /dev/null @@ -1,118 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 1D - Compute Sensitivities: true - Solution Method: Steady - Phalanx Graph Visualization Detail: 1 - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 2.00000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 1.00000000000000006e-01 - Source Functions: - Quadratic: - Nonlinear Factor: 2.00000000000000000e+00 - Parameters: - Number Of Parameters: 3 - Parameter 0: - Name: DBC on NS NodeSet0 for DOF T - Parameter 1: - Name: DBC on NS NodeSet1 for DOF T - Parameter 2: - Name: Quadratic Nonlinear Factor - Response Functions: - Number Of Responses: 3 - Response 0: - Name: Solution Average - Response 1: - Name: Solution Two Norm - Response 2: - Name: Solution Max Value - Discretization: - 1D Elements: 100 - Method: STK1D - Regression For Response 0: - Test Value: 1.54847000000000001e+00 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Value: 1.56217999999999990e+00 - Sensitivity For Parameter 1: - Test Value: 1.28730000000000011e+00 - Sensitivity For Parameter 2: - Test Value: 8.52306000000000008e-01 - Regression For Response 1: - Test Value: 1.69218499999999992e+01 - Relative Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Value: 1.66396000000000015e+01 - Sensitivity For Parameter 1: - Test Value: 1.14771699999999992e+01 - Sensitivity For Parameter 2: - Test Value: 8.75256599999999985e+00 - Regression For Response 2: - Test Value: 2.20519499999999979e+00 - Relative Tolerance: 1.00000000000000005e-04 - Piro: - LOCA: - Bifurcation: { } - Constraints: { } - Predictor: - First Step Predictor: { } - Last Step Predictor: { } - Step Size: { } - Stepper: - Eigensolver: { } - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 2 - Prec Type: ILU - Ifpack Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 2 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/SteadyHeat1DEB/CMakeLists.txt b/tests/small/SteadyHeat1DEB/CMakeLists.txt deleted file mode 100644 index d59f245d79..0000000000 --- a/tests/small/SteadyHeat1DEB/CMakeLists.txt +++ /dev/null @@ -1,38 +0,0 @@ -# Copy materials file from source to binary dir -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/materials.yaml - ${CMAKE_CURRENT_BINARY_DIR}/materials.yaml COPYONLY) - -# Name the test with the directory name -get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -# Executable to run before the tests -add_executable(HeatProfile HeatProfile.cpp) - -# Create the test (actually the data for the test) with this name and standard executable -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - - add_test(NAME ${testName}_Epetra - COMMAND ${CMAKE_COMMAND} "-DTEST_PROG=${SerialAlbany.exe}" - "-DTEST_ARGS=input.yaml" - "-DAUX_ENV=${ALBANY_PRETEST_EXEC}" - "-DAUX_PROG=${CMAKE_CURRENT_BINARY_DIR}/HeatProfile" -P - ${CMAKE_CURRENT_SOURCE_DIR}/runtest.cmake - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Basic;Epetra;Forward") -endif() - -if (ALBANY_IFPACK2) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - - add_test(NAME ${testName}_Tpetra - COMMAND ${CMAKE_COMMAND} "-DTEST_PROG=${Albany.exe}" - "-DTEST_ARGS=inputT.yaml" - "-DAUX_ENV=${ALBANY_PRETEST_EXEC}" - "-DAUX_PROG=${CMAKE_CURRENT_BINARY_DIR}/HeatProfile" -P - ${CMAKE_CURRENT_SOURCE_DIR}/runtest.cmake - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Basic;Tpetra;Forward") -endif () diff --git a/tests/small/SteadyHeat1DEB/HeatProfile.cpp b/tests/small/SteadyHeat1DEB/HeatProfile.cpp deleted file mode 100644 index b9d739a137..0000000000 --- a/tests/small/SteadyHeat1DEB/HeatProfile.cpp +++ /dev/null @@ -1,75 +0,0 @@ -#include -#include -#include - -using namespace std; - -int main(){ - - int num_nodes = 101; - - double minx = 0.0; - double maxx = 1.0; - - double dx = (maxx - minx) / static_cast(num_nodes - 1); - - double avg = 0; - double two_norm = 0; - double max = -1000; - double value; - - ofstream out; - - out.open("reference_solution.dat", ios::out); - - out << "%%MatrixMarket matrix array real general" << endl; - - out << "% Steady 1D Heat Equation, with element blocks" << endl; - - out << num_nodes << " 1" << endl; // Write M and N values - - // Soln is 1.0 @ x=0 and 0.0 @ x=1 - // MatA (Plastic) goes from x=0 to x=0.5 and has k=1.0 - // MatB (Metal) goes from x=0.5 to x=1.0 and has k = 10 - // These values are set in materials.xml - - // q = (T1 - T3) / ((L1/k1) + (L2/k2)) = 1.818181 ... - - for(int i = 0; i < num_nodes / 2; i++){ - - // T = 1.0 - Lq/k - value = 1.0 - (i * dx)*1.818181818181; - out << value << endl; - - avg += value; - two_norm += value * value; - if(value > max) max = value; - - } - - for(int i = num_nodes / 2; i < num_nodes; i++){ - - // T = Lq/k (L from R bound) = (1.0 - L)q/k - value = (1.0 - i * dx)*1.818181818181/10.0; - out << value << endl; - - avg += value; - two_norm += value * value; - if(value > max) max = value; - - } - - out.close(); - - avg /= (double)num_nodes; - two_norm = sqrt(two_norm); - - cout << "Solution Average = " << avg << endl; - cout << "Solution Two Norm = " << two_norm << endl; - cout << "Solution Max Value = " << max << endl; - - return 0; - -} - - diff --git a/tests/small/SteadyHeat1DEB/input.yaml b/tests/small/SteadyHeat1DEB/input.yaml deleted file mode 100644 index 53871e90a9..0000000000 --- a/tests/small/SteadyHeat1DEB/input.yaml +++ /dev/null @@ -1,100 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 1D - Solution Method: Steady - Phalanx Graph Visualization Detail: 1 - MaterialDB Filename: materials.yaml - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 1.00000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 0.00000000000000000e+00 - ThermalConductivity: - ThermalConductivity Type: Block Dependent - Parameters: - Number Of Parameters: 2 - Parameter 0: - Name: DBC on NS NodeSet0 for DOF T - Parameter 1: - Name: DBC on NS NodeSet1 for DOF T - Response Functions: - Number Of Responses: 3 - Response 0: - Name: Solution Average - Response 1: - Name: Solution Two Norm - Response 2: - Name: Solution Max Value - Discretization: - Method: STK1D - Element Blocks: 2 - Block 0: begins at 0 ends at 50 length 1.0 named MatA - Block 1: begins at 50 ends at 100 length 1.0 named MatB - Separate Evaluators by Element Block: true - Regression For Response 0: - Test Value: 2.9748e-01 - Absolute Tolerance: 1.0e-06 - Relative Tolerance: 1.0e-06 - Regression For Response 1: - Test Value: 4.35432e+00 - Absolute Tolerance: 1.0e-06 - Relative Tolerance: 1.0e-06 - Regression For Response 2: - Test Value: 1.0e+00 - Absolute Tolerance: 1.0e-06 - Relative Tolerance: 1.0e-06 - Piro: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 2 - Prec Type: ILU - Ifpack Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 2 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/SteadyHeat1DEB/inputT.yaml b/tests/small/SteadyHeat1DEB/inputT.yaml deleted file mode 100644 index 24c8aa2398..0000000000 --- a/tests/small/SteadyHeat1DEB/inputT.yaml +++ /dev/null @@ -1,105 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: Heat 1D - Solution Method: Steady - Phalanx Graph Visualization Detail: 1 - MaterialDB Filename: materials.yaml - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 1.00000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 0.00000000000000000e+00 - ThermalConductivity: - ThermalConductivity Type: Block Dependent - Parameters: - Number Of Parameters: 2 - Parameter 0: - Name: DBC on NS NodeSet0 for DOF T - Parameter 1: - Name: DBC on NS NodeSet1 for DOF T - Response Functions: - Number Of Responses: 4 - Response 0: - Name: Solution Average - Response 1: - Name: Solution Two Norm - Response 2: - Name: Solution Max Value - Response 3: - Name: Solution Two Norm File - Discretization: - Method: STK1D - Element Blocks: 2 - Block 0: begins at 0 ends at 50 length 1.0 named MatA - Block 1: begins at 50 ends at 100 length 1.0 named MatB - Separate Evaluators by Element Block: true - Regression For Response 0: - Test Value: 2.9748e-01 - Absolute Tolerance: 1.0e-06 - Relative Tolerance: 1.0e-06 - Regression For Response 1: - Test Value: 4.35432e+00 - Absolute Tolerance: 1.0e-06 - Relative Tolerance: 1.0e-06 - Regression For Response 2: - Test Value: 1.0e+00 - Absolute Tolerance: 1.0e-06 - Relative Tolerance: 1.0e-06 - Regression For Response 3: - Test Value: 0.0e+00 - Absolute Tolerance: 1.0e-06 - Piro: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 2 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 2 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/SteadyHeat1DEB/materials.yaml b/tests/small/SteadyHeat1DEB/materials.yaml deleted file mode 100644 index 4a094ee5d4..0000000000 --- a/tests/small/SteadyHeat1DEB/materials.yaml +++ /dev/null @@ -1,21 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Reference Material: MatA - ElementBlocks: - MatA: - material: Plastic - MatB: - material: Metal - Materials: - Plastic: - Category: Urethane - ThermalConductivity: - Name: Constant - Value: 1.00000000000000000e+00 - Metal: - Category: Non-ferrous - ThermalConductivity: - Name: Constant - Value: 1.00000000000000000e+01 -... diff --git a/tests/small/SteadyHeat1DEB/runtest.cmake b/tests/small/SteadyHeat1DEB/runtest.cmake deleted file mode 100644 index e8f30dff87..0000000000 --- a/tests/small/SteadyHeat1DEB/runtest.cmake +++ /dev/null @@ -1,31 +0,0 @@ -# 1. Run the program and generate the exodus output - -message("Running the test prep code:") -message("${AUX_ENV} " " ${AUX_PROG} ") - -SET(TMP_COMMAND_STR "${AUX_ENV} ${AUX_PROG}") -STRING(REPLACE " " ";" TMP_LIST ${TMP_COMMAND_STR}) - -# Get the command -LIST(GET TMP_LIST 0 TMP_COMMAND) -LIST(REMOVE_AT TMP_LIST 0) - -EXECUTE_PROCESS(COMMAND ${TMP_COMMAND} ${TMP_LIST} - RESULT_VARIABLE HAD_ERROR) - -if(HAD_ERROR) - message(FATAL_ERROR "Test prep didn't run: test failed") -endif() - -# 2. Run Albany - -message("Running the command:") -message("${TEST_PROG} " " ${TEST_ARGS}") - -EXECUTE_PROCESS(COMMAND ${TEST_PROG} ${TEST_ARGS} - RESULT_VARIABLE HAD_ERROR) - -if(HAD_ERROR) - message(FATAL_ERROR "Albany didn't run: test failed") -endif() - diff --git a/tests/small/SteadyHeat2DInternalNeumann/CMakeLists.txt b/tests/small/SteadyHeat2DInternalNeumann/CMakeLists.txt deleted file mode 100644 index 1125006ad1..0000000000 --- a/tests/small/SteadyHeat2DInternalNeumann/CMakeLists.txt +++ /dev/null @@ -1,38 +0,0 @@ -# Name the test with the directory name -get_filename_component(testNameRoot ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -# Copy materials and mesh files from source to binary dir -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/materials.yaml - ${CMAKE_CURRENT_BINARY_DIR}/materials.yaml COPYONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/mesh.exo - ${CMAKE_CURRENT_BINARY_DIR}/mesh.exo COPYONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/mesh.exo.4.0 - ${CMAKE_CURRENT_BINARY_DIR}/mesh.exo.4.0 COPYONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/mesh.exo.4.1 - ${CMAKE_CURRENT_BINARY_DIR}/mesh.exo.4.1 COPYONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/mesh.exo.4.2 - ${CMAKE_CURRENT_BINARY_DIR}/mesh.exo.4.2 COPYONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/mesh.exo.4.3 - ${CMAKE_CURRENT_BINARY_DIR}/mesh.exo.4.3 COPYONLY) - -#################################### -### Main tests ### -#################################### - -set(testName ${testNameRoot}) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - - add_test(${testName}_Epetra ${Albany.exe} input.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Basic;Epetra;Forward") -endif() - -if (ALBANY_IFPACK2) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - - add_test(${testName}_Tpetra ${Albany.exe} inputT.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Basic;Tpetra;Forward") -endif () diff --git a/tests/small/SteadyHeat2DInternalNeumann/input.yaml b/tests/small/SteadyHeat2DInternalNeumann/input.yaml deleted file mode 100644 index 9ffa2ed033..0000000000 --- a/tests/small/SteadyHeat2DInternalNeumann/input.yaml +++ /dev/null @@ -1,91 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 2D - Solution Method: Steady - Phalanx Graph Visualization Detail: 0 - MaterialDB Filename: materials.yaml - Dirichlet BCs: - DBC on NS nodelist_1 for DOF T: 0.00000000000000000e+00 - DBC on NS nodelist_2 for DOF T: 1.00000000000000000e+00 - Neumann BCs: - NBC on SS surface_1 for DOF T set scaled jump: [-1.00000000000000000e+00] - ThermalConductivity: - ThermalConductivity Type: Constant - Value: 1.00000000000000000e+00 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Name: NBC on SS surface_1 for DOF T set scaled jump - Response Functions: - Number Of Responses: 2 - Response 0: - Name: Solution Average - Response 1: - Name: Solution Max Value - Discretization: - Method: Ioss - Exodus Input File Name: mesh.exo - Exodus Output File Name: mesh_output.exo - Regression For Response 0: - Test Value: 3.83333330000000028e-01 - Absolute Tolerance: 1.00000000000000005e-04 - Regression For Response 1: - Test Value: 1.00000000000000000e+00 - Absolute Tolerance: 1.00000000000000005e-04 - Piro: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 2 - Prec Type: ILU - Ifpack Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 2 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/SteadyHeat2DInternalNeumann/inputT.yaml b/tests/small/SteadyHeat2DInternalNeumann/inputT.yaml deleted file mode 100644 index 30992d0421..0000000000 --- a/tests/small/SteadyHeat2DInternalNeumann/inputT.yaml +++ /dev/null @@ -1,91 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: Heat 2D - Solution Method: Steady - Phalanx Graph Visualization Detail: 0 - MaterialDB Filename: materials.yaml - Dirichlet BCs: - DBC on NS nodelist_1 for DOF T: 0.00000000000000000e+00 - DBC on NS nodelist_2 for DOF T: 1.00000000000000000e+00 - Neumann BCs: - NBC on SS surface_1 for DOF T set scaled jump: [-1.00000000000000000e+00] - ThermalConductivity: - ThermalConductivity Type: Constant - Value: 1.00000000000000000e+00 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Name: NBC on SS surface_1 for DOF T set scaled jump - Response Functions: - Number Of Responses: 2 - Response 0: - Name: Solution Average - Response 1: - Name: Solution Max Value - Discretization: - Method: Ioss - Exodus Input File Name: mesh.exo - Exodus Output File Name: mesh_output.exo - Regression For Response 0: - Test Value: 3.83333330000000028e-01 - Absolute Tolerance: 1.00000000000000005e-04 - Regression For Response 1: - Test Value: 1.00000000000000000e+00 - Absolute Tolerance: 1.00000000000000005e-04 - Piro: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Overlap: 2 - Prec Type: ILUT - Ifpack2 Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 2 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/SteadyHeat2DInternalNeumann/makemesh.jou b/tests/small/SteadyHeat2DInternalNeumann/makemesh.jou deleted file mode 100644 index 395d7cb364..0000000000 --- a/tests/small/SteadyHeat2DInternalNeumann/makemesh.jou +++ /dev/null @@ -1,35 +0,0 @@ -create curve spline location 0 0 0 location 0.5 0 0 -create curve spline location 0.5 0 0 location 0.5 1 0 -create curve spline location 0.5 1 0 location 0 1 0 -create curve spline location 0 1 0 location 0 0 0 - -create curve spline location 0.5 0 0 location 1 0 0 -create curve spline location 1 0 0 location 1 1 0 -create curve spline location 1 1 0 location 0.5 1 0 - -create surface curve 1 2 3 4 -create surface curve 5 6 7 2 - -imprint all - -merge all - -mesh surface 2 1 - -block 1 surface 1 - -block 1 element type QUAD4 - -block 2 surface 2 - -block 2 element type QUAD4 - -nodeset 1 curve 4 - -nodeset 2 curve 6 - -Sideset 1 curve 2 - -set large exodus file off - -export mesh "/Volumes/ascldap/Codes/Albany/examples/SteadyHeat2DInternalNeumann/mesh.exo" overwrite diff --git a/tests/small/SteadyHeat2DInternalNeumann/materials.yaml b/tests/small/SteadyHeat2DInternalNeumann/materials.yaml deleted file mode 100644 index 04b29fe9b7..0000000000 --- a/tests/small/SteadyHeat2DInternalNeumann/materials.yaml +++ /dev/null @@ -1,17 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Reference Material: Block_0 - ElementBlocks: - block_1: - material: Plastic - block_2: - material: Metal - Materials: - Plastic: - Category: Urethane - Flux Scale: 0.00000000000000000e+00 - Metal: - Category: Non-ferrous - Flux Scale: 1.00000000000000000e+00 -... diff --git a/tests/small/SteadyHeat2DInternalNeumann/mesh.exo b/tests/small/SteadyHeat2DInternalNeumann/mesh.exo deleted file mode 100644 index 6b4f576644..0000000000 Binary files a/tests/small/SteadyHeat2DInternalNeumann/mesh.exo and /dev/null differ diff --git a/tests/small/SteadyHeat2DInternalNeumann/mesh.exo.4.0 b/tests/small/SteadyHeat2DInternalNeumann/mesh.exo.4.0 deleted file mode 100644 index 11a7571fe0..0000000000 Binary files a/tests/small/SteadyHeat2DInternalNeumann/mesh.exo.4.0 and /dev/null differ diff --git a/tests/small/SteadyHeat2DInternalNeumann/mesh.exo.4.1 b/tests/small/SteadyHeat2DInternalNeumann/mesh.exo.4.1 deleted file mode 100644 index 1462066933..0000000000 Binary files a/tests/small/SteadyHeat2DInternalNeumann/mesh.exo.4.1 and /dev/null differ diff --git a/tests/small/SteadyHeat2DInternalNeumann/mesh.exo.4.2 b/tests/small/SteadyHeat2DInternalNeumann/mesh.exo.4.2 deleted file mode 100644 index a37baf6bb4..0000000000 Binary files a/tests/small/SteadyHeat2DInternalNeumann/mesh.exo.4.2 and /dev/null differ diff --git a/tests/small/SteadyHeat2DInternalNeumann/mesh.exo.4.3 b/tests/small/SteadyHeat2DInternalNeumann/mesh.exo.4.3 deleted file mode 100644 index e6f9d35c62..0000000000 Binary files a/tests/small/SteadyHeat2DInternalNeumann/mesh.exo.4.3 and /dev/null differ diff --git a/tests/small/SteadyHeat3DTest/CMakeLists.txt b/tests/small/SteadyHeat3DTest/CMakeLists.txt deleted file mode 100644 index 4273a0c412..0000000000 --- a/tests/small/SteadyHeat3DTest/CMakeLists.txt +++ /dev/null @@ -1,30 +0,0 @@ -if (ALBANY_EPETRA) - # Copy Input file from source to binary dir - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputA.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputA.yaml COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputB.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputB.yaml COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputC.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputC.yaml COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputD.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputD.yaml COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/beam.pg - ${CMAKE_CURRENT_BINARY_DIR}/beam.pg COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/materials.yaml - ${CMAKE_CURRENT_BINARY_DIR}/materials.yaml COPYONLY) - - # 2. Name the test with the directory name - get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR} NAME) - - add_test(${testName}_A ${Albany.exe} inputA.yaml) - set_tests_properties(${testName}_A PROPERTIES LABELS "Basic;Epetra;Forward") - - add_test(${testName}_B ${Albany.exe} inputB.yaml) - set_tests_properties(${testName}_B PROPERTIES LABELS "Basic;Epetra;Forward") - - add_test(${testName}_C ${Albany.exe} inputC.yaml) - set_tests_properties(${testName}_C PROPERTIES LABELS "Basic;Epetra;Forward") - - add_test(${testName}_D ${Albany.exe} inputD.yaml) - set_tests_properties(${testName}_D PROPERTIES LABELS "Basic;Epetra;Forward") -endif() diff --git a/tests/small/SteadyHeat3DTest/beam.pg b/tests/small/SteadyHeat3DTest/beam.pg deleted file mode 100644 index f4e82d60b5..0000000000 --- a/tests/small/SteadyHeat3DTest/beam.pg +++ /dev/null @@ -1,18 +0,0 @@ -mesh three-d - rectilinear - nx = 10 - ny = 2 - nz = 2 - bx = 1 - by = 1 - bz = 1 - gmin = 0.0 0.0 0.0 - gmax = 10.0 1.0 1.0 - end - set assign - nodeset,ilo,1 - nodeset,ihi,2 - sideset,ihi,3 - end -end - diff --git a/tests/small/SteadyHeat3DTest/inputA.yaml b/tests/small/SteadyHeat3DTest/inputA.yaml deleted file mode 100644 index f509f43482..0000000000 --- a/tests/small/SteadyHeat3DTest/inputA.yaml +++ /dev/null @@ -1,33 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 3D - Phalanx Graph Visualization Detail: 1 - Dirichlet BCs: - DBC on NS nodelist_1 for DOF T: 0.00000000000000000e+00 - DBC on NS nodelist_2 for DOF T: 5.00000000000000000e+02 - ThermalConductivity: - ThermalConductivity Type: Constant - Value: 5.00000000000000000e+01 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 3 - Scalar 0: - Name: DBC on NS nodelist_1 for DOF T - Scalar 1: - Name: DBC on NS nodelist_2 for DOF T - Scalar 2: - Name: ThermalConductivity - Discretization: - Method: Pamgen - Exodus Output File Name: beamA.exo - Pamgen Input File Name: beam.pg - Workset Size: 1 - Cubature Degree: 2 - Regression For Response 0: - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/SteadyHeat3DTest/inputB.yaml b/tests/small/SteadyHeat3DTest/inputB.yaml deleted file mode 100644 index d9092d33d5..0000000000 --- a/tests/small/SteadyHeat3DTest/inputB.yaml +++ /dev/null @@ -1,34 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 3D - Phalanx Graph Visualization Detail: 1 - Dirichlet BCs: - DBC on NS nodelist_1 for DOF T: 0.00000000000000000e+00 - Neumann BCs: - NBC on SS surface_3 for DOF T set dudn: [2.50000000000000000e+03] - ThermalConductivity: - ThermalConductivity Type: Constant - Value: 5.00000000000000000e+01 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 3 - Scalar 0: - Name: DBC on NS nodelist_1 for DOF T - Scalar 1: - Name: NBC on SS surface_3 for DOF T set dudn - Scalar 2: - Name: ThermalConductivity - Discretization: - Method: Pamgen - Exodus Output File Name: beamB.exo - Pamgen Input File Name: beam.pg - Workset Size: 1 - Cubature Degree: 2 - Regression For Response 0: - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/SteadyHeat3DTest/inputC.yaml b/tests/small/SteadyHeat3DTest/inputC.yaml deleted file mode 100644 index 7cdb176e24..0000000000 --- a/tests/small/SteadyHeat3DTest/inputC.yaml +++ /dev/null @@ -1,35 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 3D - Phalanx Graph Visualization Detail: 1 - MaterialDB Filename: materials.yaml - Dirichlet BCs: - DBC on NS nodelist_1 for DOF T: 0.00000000000000000e+00 - Neumann BCs: - NBC on SS surface_3 for DOF T set robin: [6.00000000000000000e+02, 2.50000000000000000e+01] - ThermalConductivity: - ThermalConductivity Type: Constant - Value: 5.00000000000000000e+01 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 3 - Scalar 0: - Name: DBC on NS nodelist_1 for DOF T - Scalar 1: - Name: 'NBC on SS surface_3 for DOF T set robin[0]' - Scalar 2: - Name: ThermalConductivity - Discretization: - Method: Pamgen - Exodus Output File Name: beamC.exo - Pamgen Input File Name: beam.pg - Workset Size: 1 - Cubature Degree: 2 - Regression For Response 0: - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/SteadyHeat3DTest/inputD.yaml b/tests/small/SteadyHeat3DTest/inputD.yaml deleted file mode 100644 index 3dcf7b08a4..0000000000 --- a/tests/small/SteadyHeat3DTest/inputD.yaml +++ /dev/null @@ -1,35 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 3D - Phalanx Graph Visualization Detail: 1 - MaterialDB Filename: materials.yaml - Dirichlet BCs: - DBC on NS nodelist_1 for DOF T: 0.00000000000000000e+00 - Neumann BCs: - NBC on SS surface_3 for DOF T set radiate: [6.00000000000000000e+02, 3.7257824143070044e-8] - ThermalConductivity: - ThermalConductivity Type: Constant - Value: 5.00000000000000000e+01 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 3 - Scalar 0: - Name: DBC on NS nodelist_1 for DOF T - Scalar 1: - Name: 'NBC on SS surface_3 for DOF T set radiate[0]' - Scalar 2: - Name: ThermalConductivity - Discretization: - Method: Pamgen - Exodus Output File Name: beamD.exo - Pamgen Input File Name: beam.pg - Workset Size: 1 - Cubature Degree: 2 - Regression For Response 0: - Relative Tolerance: 1.00000000000000002e-03 -... diff --git a/tests/small/SteadyHeat3DTest/materials.yaml b/tests/small/SteadyHeat3DTest/materials.yaml deleted file mode 100644 index ad572b88a0..0000000000 --- a/tests/small/SteadyHeat3DTest/materials.yaml +++ /dev/null @@ -1,12 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Reference Material: Block_0 - ElementBlocks: - block_1: - material: Metal - Materials: - Metal: - Category: Non-ferrous - Flux Scale: 2.50000000000000000e+02 -... diff --git a/tests/small/TekoPrec/CMakeLists.txt b/tests/small/TekoPrec/CMakeLists.txt deleted file mode 100644 index e76a66103b..0000000000 --- a/tests/small/TekoPrec/CMakeLists.txt +++ /dev/null @@ -1,12 +0,0 @@ -if (ALBANY_EPETRA) - # Name the test with the directory name - get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR} NAME) - - # Copy input file from source to binary dir - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - - # Create the test with this name and standard executable - add_test(${testName} ${Albany.exe} input.yaml) - set_tests_properties(${testName} PROPERTIES LABELS "Demo;Epetra;Forward") -endif() diff --git a/tests/small/TekoPrec/input.yaml b/tests/small/TekoPrec/input.yaml deleted file mode 100644 index 4c0af2a17e..0000000000 --- a/tests/small/TekoPrec/input.yaml +++ /dev/null @@ -1,163 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Problem: - Name: Helmholtz 2D - Compute Sensitivities: true - Left BC: 0.00000000000000000e+00 - Right BC: 0.00000000000000000e+00 - Top BC: 0.00000000000000000e+00 - Bottom BC: 0.00000000000000000e+00 - Ksqr: 2.00000000000000000e+00 - Use Physics-Based Preconditioner: true - Phalanx Graph Visualization Detail: 2 - Dirichlet BCs: - DBC on NS NodeSet0 for DOF U: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF U: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF U: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF U: 0.00000000000000000e+00 - DBC on NS NodeSet0 for DOF V: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF V: 0.00000000000000000e+00 - DBC on NS NodeSet2 for DOF V: 0.00000000000000000e+00 - DBC on NS NodeSet3 for DOF V: 0.00000000000000000e+00 - Source Functions: - Point: - Number: 1 - Center 0: [1.30000000000000004e+00, 8.00000000000000044e-01] - Time Wavelet: - Type: Monotone - Spatial: - Type: Gaussian - Amplitude: 5.00000000000000000e+00 - Radius: 1.00000000000000005e-01 - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Scalar - Name: Ksqr - Response Functions: - Number Of Responses: 2 - Response 1: - Type: Scalar Response - Name: Solution Two Norm - Response 0: - Type: Scalar Response - Name: Solution Average - Teko: - Unknown Blocking: 1 1 - Test Blocked Operator: true - Preconditioner Name: The Block Gauss-Seidel - Inverse Factory Library: - The Block Jacobi: - Type: Block Jacobi - Inverse Type: ML2 - The Block Gauss-Seidel: - Type: Block Gauss-Seidel - Inverse Type: ML2 - ML2: - Type: ML - Base Method Defaults: SA - ML Settings: - 'aggregation: type': Uncoupled - 'coarse: max size': 20 - 'coarse: pre or post': post - 'coarse: sweeps': 1 - 'coarse: type': Amesos-KLU - prec type: MGV - 'smoother: type': Gauss-Seidel - 'smoother: damping factor': 6.60000000000000031e-01 - 'smoother: pre or post': both - 'smoother: sweeps': 1 - ML output: 1 - Discretization: - 1D Elements: 50 - 2D Elements: 50 - 1D Scale: 4.00000000000000000e+00 - 2D Scale: 4.00000000000000000e+00 - Method: STK2D - Piro: - LOCA: - Predictor: - Method: Tangent - Stepper: - Initial Value: 0.00000000000000000e+00 - Continuation Parameter: Ksqr - Continuation Method: Natural - Max Steps: 10 - Max Value: 2.00000000000000000e+02 - Min Value: 0.00000000000000000e+00 - Compute Eigenvalues: false - Step Size: - Initial Step Size: 2.00000000000000011e-01 - Method: Constant - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: {} - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 100 - Flexible Gmres: false - Preconditioner Type: None - Preconditioner Types: - Ifpack: - Overlap: 1 - Prec Type: ILU - Ifpack Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 1 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Information: - Error: true - Warning: true - Outer Iteration: true - Parameters: false - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Regression For Response 0: - Sensitivity For Parameter 0: - Test Value: 4.20882169999999999e-01 - Test Value: -2.89202100000000017e-01 - Relative Tolerance: 1.00000000000000004e-04 - Regression For Response 1: - Sensitivity For Parameter 0: - Test Value: 7.30462879999999969e+00 - Test Value: 5.14155530000000027e+01 - Relative Tolerance: 1.00000000000000004e-04 -... diff --git a/tests/small/TransientHeat1D/CMakeLists.txt b/tests/small/TransientHeat1D/CMakeLists.txt deleted file mode 100644 index fb8b46f136..0000000000 --- a/tests/small/TransientHeat1D/CMakeLists.txt +++ /dev/null @@ -1,23 +0,0 @@ -# The root name for the tests in this directory is the directory name -get_filename_component(testNameRoot ${CMAKE_CURRENT_SOURCE_DIR} NAME) - -#################################### -### Main tests ### -#################################### - -set (testName ${testNameRoot}) - -if (ALBANY_EPETRA) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - - add_test(${testName}_Epetra ${Albany.exe} input.yaml) - set_tests_properties(${testName}_Epetra PROPERTIES LABELS "Basic;Epetra;Forward") -endif() - -if (ALBANY_IFPACK2) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputT.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputT.yaml COPYONLY) - add_test(${testName}_Tpetra ${Albany.exe} inputT.yaml) - set_tests_properties(${testName}_Tpetra PROPERTIES LABELS "Basic;Tpetra;Forward") -endif() diff --git a/tests/small/TransientHeat1D/input.yaml b/tests/small/TransientHeat1D/input.yaml deleted file mode 100644 index 86e81dc989..0000000000 --- a/tests/small/TransientHeat1D/input.yaml +++ /dev/null @@ -1,132 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 1D - Compute Sensitivities: true - Solution Method: Transient - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 0.00000000000000000e+00 - Initial Condition: - Function: 1D Gauss-Sin - Function Data: [0.00000000000000000e+00] - Source Functions: - Quadratic: - Nonlinear Factor: 0.00000000000000000e+00 - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Average - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 3 - Scalar 0: - Name: DBC on NS NodeSet0 for DOF T - Scalar 1: - Name: DBC on NS NodeSet1 for DOF T - Scalar 2: - Name: Quadratic Nonlinear Factor - Discretization: - 1D Elements: 100 - Method: STK1D - Exodus Output File Name: th1d.exo - Regression For Response 0: - Test Value: 3.41879999999999986e-05 - Relative Tolerance: 1.00000000000000002e-02 - Absolute Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Values: [5.00000000000000000e-01, 5.00000000000000000e-01, 3.00000000000000008e-06] - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 1.00000000000000010e-03 - Final Time: 1.0 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-08 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: NormF - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000002e-08 - Output Frequency: 1 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 3 - Block Size: 1 - Num Blocks: 100 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Prec Type: ILU - Overlap: 1 - Ifpack Settings: - 'fact: level-of-fill': 1 -... diff --git a/tests/small/TransientHeat1D/inputT.yaml b/tests/small/TransientHeat1D/inputT.yaml deleted file mode 100644 index 298d7842c3..0000000000 --- a/tests/small/TransientHeat1D/inputT.yaml +++ /dev/null @@ -1,133 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Tpetra - Problem: - Name: Heat 1D - Compute Sensitivities: true - Solution Method: Transient - Dirichlet BCs: - DBC on NS NodeSet0 for DOF T: 0.00000000000000000e+00 - DBC on NS NodeSet1 for DOF T: 0.00000000000000000e+00 - Initial Condition: - Function: 1D Gauss-Sin - Function Data: [0.00000000000000000e+00] - Source Functions: - Quadratic: - Nonlinear Factor: 0.00000000000000000e+00 - Response Functions: - Number Of Responses: 1 - Response 0: - Name: Solution Average - Parameters: - Number Of Parameters: 1 - Parameter 0: - Type: Vector - Dimension: 3 - Scalar 0: - Name: DBC on NS NodeSet0 for DOF T - Scalar 1: - Name: DBC on NS NodeSet1 for DOF T - Scalar 2: - Name: Quadratic Nonlinear Factor - Discretization: - 1D Elements: 100 - Method: STK1D - Exodus Output File Name: th1d_tpetra.exo - Workset Size: -1 - Regression For Response 0: - Test Value: 3.41879999999999986e-05 - Relative Tolerance: 1.00000000000000002e-02 - Absolute Tolerance: 1.00000000000000005e-04 - Sensitivity For Parameter 0: - Test Values: [5.00000000000000000e-01, 5.00000000000000000e-01, 3.00000000000000008e-06] - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 1.00000000000000010e-03 - Final Time: 1.0 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-08 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: NormF - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000002e-08 - Output Frequency: 1 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 3 - Block Size: 1 - Num Blocks: 100 - Flexible Gmres: false - Preconditioner Type: Ifpack2 - Preconditioner Types: - Ifpack2: - Prec Type: ILUT - Overlap: 1 - Ifpack2 Settings: - 'fact: ilut level-of-fill': 1.00000000000000000e+00 -... diff --git a/tests/small/TransientHeat2DTableSource/CMakeLists.txt b/tests/small/TransientHeat2DTableSource/CMakeLists.txt deleted file mode 100644 index 0116df7622..0000000000 --- a/tests/small/TransientHeat2DTableSource/CMakeLists.txt +++ /dev/null @@ -1,28 +0,0 @@ -if (ALBANY_EPETRA) - # Copy Input file from source to binary dir - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.yaml - ${CMAKE_CURRENT_BINARY_DIR}/input.yaml COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/inputTrans.yaml - ${CMAKE_CURRENT_BINARY_DIR}/inputTrans.yaml COPYONLY) - # Copy materials file from source to binary dir - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/materials.yaml - ${CMAKE_CURRENT_BINARY_DIR}/materials.yaml COPYONLY) - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/qdot.dat - ${CMAKE_CURRENT_BINARY_DIR}/qdot.dat COPYONLY) - - # Copy mesh files from source to binary dir - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/ebs.exo - ${CMAKE_CURRENT_BINARY_DIR}/ebs.exo COPYONLY) - - # Name the test with the directory name - get_filename_component(testName ${CMAKE_CURRENT_SOURCE_DIR} NAME) - - # Create the tests - - add_test(${testName}_Steady ${SerialAlbany.exe} input.yaml) - set_tests_properties(${testName}_Steady PROPERTIES LABELS "Basic;Epetra;Forward") - - add_test(${testName}_Transient ${SerialAlbany.exe} inputTrans.yaml) - set_tests_properties(${testName}_Transient PROPERTIES DEPENDS ${testName}_Steady) - set_tests_properties(${testName}_Transient PROPERTIES LABELS "Basic;Epetra;Forward") -endif() diff --git a/tests/small/TransientHeat2DTableSource/ebs.exo b/tests/small/TransientHeat2DTableSource/ebs.exo deleted file mode 100644 index e926a0c795..0000000000 Binary files a/tests/small/TransientHeat2DTableSource/ebs.exo and /dev/null differ diff --git a/tests/small/TransientHeat2DTableSource/ebs.jou b/tests/small/TransientHeat2DTableSource/ebs.jou deleted file mode 100644 index 8252e329ca..0000000000 --- a/tests/small/TransientHeat2DTableSource/ebs.jou +++ /dev/null @@ -1,66 +0,0 @@ -# -# Infinity -create cylinder height 1.0 radius 10 -# -# Liner outer radius -create cylinder height 1.0 radius 3.80 -# -# Buffer layer 2 outer radius -create cylinder height 1.0 radius 3.05 -# -# Buffer layer 1 outer radius -create cylinder height 1.0 radius 1.8125 -# -# Waste package outer radius -create cylinder height 1.0 radius 0.575 -# -# Cannister outer radius -create cylinder height 1.0 radius 0.475 -# -subtract volume 2 from volume 1 keep -delete volume 1 -subtract volume 3 from volume 2 keep -delete volume 2 -subtract volume 4 from volume 3 keep -delete volume 3 -subtract volume 5 from volume 4 keep -delete volume 4 -subtract volume 6 from volume 5 keep -delete volume 5 -# imprint and merge -imprint volume all -merge volume all -# set the number of grid lines we want to see at each radius -curve 14 18 22 26 12 interval 60 -curve 14 18 22 26 12 scheme equal -curve 16 interval 30 -# mesh it -mesh surface 22 26 30 34 38 18 -# block it -block 1 surface 22 -block 1 element type QUAD4 -block 1 name "ClayRock" -block 2 surface 26 -block 2 element type QUAD4 -block 2 name "CementLiner" -block 3 surface 30 -block 3 element type QUAD4 -block 3 name "BufferLayer2" -block 4 surface 34 -block 4 element type QUAD4 -block 4 name "BufferLayer1" -block 5 surface 38 -block 5 element type QUAD4 -block 5 name "WastePackage" -block 6 surface 18 -block 6 element type QUAD4 -block 6 name "Cannister" -# At infinity (boundary condition) -nodeset 1 curve 16 -nodeset 1 name "T_inf" -# Set up a gradient BC if needed -Sideset 1 curve 16 -sideset 1 name "TGrad_inf" -# Output -set large exodus file off -export mesh "/Volumes/ascldap/Codes/Albany/examples/Carlos/ebs.exo" overwrite diff --git a/tests/small/TransientHeat2DTableSource/input.yaml b/tests/small/TransientHeat2DTableSource/input.yaml deleted file mode 100644 index a643ef2e29..0000000000 --- a/tests/small/TransientHeat2DTableSource/input.yaml +++ /dev/null @@ -1,87 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 2D - Solution Method: Steady - Phalanx Graph Visualization Detail: 0 - MaterialDB Filename: materials.yaml - Dirichlet BCs: - DBC on NS t_inf for DOF T: 3.13149999999999977e+02 - ThermalConductivity: - ThermalConductivity Type: Block Dependent - Response Functions: - Number Of Responses: 2 - Response 0: - Name: Solution Max Value - Response 1: - Name: Solution Average - Discretization: - Method: Exodus - Exodus Input File Name: ebs.exo - Exodus Output File Name: ebs-steady.exo - Separate Evaluators by Element Block: true - Use Serial Mesh: true - Regression For Response 0: - Test Value: 4.08068935999999985e+03 - Absolute Tolerance: 1.00000000000000005e-04 - Relative Tolerance: 1.00000000000000005e-04 - Regression For Response 1: - Test Value: 2.68011509999999998e+03 - Absolute Tolerance: 1.00000000000000005e-04 - Relative Tolerance: 1.00000000000000005e-04 - Piro: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Stratimikos Linear Solver: - NOX Stratimikos Options: { } - Stratimikos: - Linear Solver Type: Belos - Linear Solver Types: - AztecOO: - Forward Solve: - AztecOO Settings: - Aztec Solver: GMRES - Convergence Test: r0 - Size of Krylov Subspace: 200 - Output Frequency: 10 - Max Iterations: 200 - Tolerance: 1.00000000000000008e-05 - Belos: - Solver Type: Block GMRES - Solver Types: - Block GMRES: - Convergence Tolerance: 1.00000000000000008e-05 - Output Frequency: 10 - Output Style: 1 - Verbosity: 33 - Maximum Iterations: 100 - Block Size: 1 - Num Blocks: 50 - Flexible Gmres: false - Preconditioner Type: Ifpack - Preconditioner Types: - Ifpack: - Overlap: 2 - Prec Type: ILU - Ifpack Settings: - 'fact: drop tolerance': 0.00000000000000000e+00 - 'fact: ilut level-of-fill': 1.00000000000000000e+00 - 'fact: level-of-fill': 2 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Information: 103 - Output Precision: 3 - Output Processor: 0 - Solver Options: - Status Test Check Type: Minimal -... diff --git a/tests/small/TransientHeat2DTableSource/inputTrans.yaml b/tests/small/TransientHeat2DTableSource/inputTrans.yaml deleted file mode 100644 index ec22ba9d64..0000000000 --- a/tests/small/TransientHeat2DTableSource/inputTrans.yaml +++ /dev/null @@ -1,107 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Build Type: Epetra - Problem: - Name: Heat 2D - Solution Method: Transient - Phalanx Graph Visualization Detail: 0 - MaterialDB Filename: materials.yaml - Initial Condition: - Function: Restart - Dirichlet BCs: - DBC on NS t_inf for DOF T: 3.13149999999999977e+02 - ThermalConductivity: - ThermalConductivity Type: Block Dependent - Response Functions: - Number Of Responses: 2 - Response 0: - Name: Solution Max Value - Response 1: - Name: Solution Average - Discretization: - Method: Exodus - Exodus Input File Name: ebs-steady.exo - Exodus Output File Name: ebs-out.exo - Separate Evaluators by Element Block: true - Restart Index: 1 - Use Serial Mesh: true - Regression For Response 0: - Test Value: 2.05234966931999998e+03 - Absolute Tolerance: 1.00000000000000005e-04 - Relative Tolerance: 1.00000000000000005e-04 - Regression For Response 1: - Test Value: 1.59885245362000001e+03 - Absolute Tolerance: 1.00000000000000005e-04 - Relative Tolerance: 1.00000000000000005e-04 - Piro: - Tempus: - Integrator Name: Tempus Integrator - Tempus Integrator: - Integrator Type: Integrator Basic - Screen Output Index List: '1' - Screen Output Index Interval: 100 - Stepper Name: Tempus Stepper - Solution History: - Storage Type: Unlimited - Storage Limit: 20 - Time Step Control: - Initial Time: 0.00000000000000000e+00 - Initial Time Index: 0 - Initial Time Step: 0.8 - Final Time: 4.00000000000000000e+00 - Final Time Index: 10000 - Maximum Absolute Error: 1.00000000000000002e-08 - Maximum Relative Error: 1.00000000000000002e-08 - Output Time List: '' - Output Index List: '' - #Output Time Interval: 1.00000000000000000e+01 - Output Index Interval: 1000 - Maximum Number of Stepper Failures: 10 - Maximum Number of Consecutive Stepper Failures: 5 - Tempus Stepper: - Stepper Type: Backward Euler - Solver Name: Demo Solver - Demo Solver: - NOX: - Direction: - Method: Newton - Newton: - Forcing Term Method: Constant - Rescue Bad Newton Solve: true - Linear Solver: - Tolerance: 1.00000000000000002e-02 - Line Search: - Full Step: - Full Step: 1.00000000000000000e+00 - Method: Full Step - Nonlinear Solver: Line Search Based - Printing: - Output Precision: 3 - Output Processor: 0 - Output Information: - Error: true - Warning: true - Outer Iteration: false - Parameters: true - Details: false - Linear Solver Details: true - Stepper Iteration: true - Stepper Details: true - Stepper Parameters: true - Solver Options: - Status Test Check Type: Minimal - Status Tests: - Test Type: Combo - Combo Type: OR - Number of Tests: 2 - Test 0: - Test Type: NormF - Tolerance: 1.00000000000000002e-08 - Test 1: - Test Type: MaxIters - Maximum Iterations: 10 - Stratimikos: - Linear Solver Type: AztecOO - Preconditioner Type: Ifpack -... diff --git a/tests/small/TransientHeat2DTableSource/materials.yaml b/tests/small/TransientHeat2DTableSource/materials.yaml deleted file mode 100644 index f7e9cf5b7d..0000000000 --- a/tests/small/TransientHeat2DTableSource/materials.yaml +++ /dev/null @@ -1,52 +0,0 @@ -%YAML 1.1 ---- -ANONYMOUS: - Reference Material: clay - ElementBlocks: - ClayRock: - material: clay - CementLiner: - material: cement - BufferLayer2: - material: buffer2 - BufferLayer1: - material: buffer1 - WastePackage: - material: package - Cannister: - material: UO2 - Materials: - UO2: - Category: UraniumDioxide - ThermalConductivity: - Name: Constant - Value: 4.98439999999999994e+00 - Source Functions: - Table: - Filename: qdot.dat - package: - Category: Steel - ThermalConductivity: - Name: Constant - Value: 4.60000000000000000e+01 - buffer1: - Category: bentonite/graphite - ThermalConductivity: - Name: Constant - Value: 3.29999999999999982e+00 - buffer2: - Category: dry_bentonite - ThermalConductivity: - Name: Constant - Value: 5.99999999999999978e-01 - cement: - Category: cement - ThermalConductivity: - Name: Constant - Value: 1.69999999999999996e+00 - clay: - Category: rock - ThermalConductivity: - Name: Constant - Value: 4.25000000000000000e+00 -... diff --git a/tests/small/TransientHeat2DTableSource/qdot.dat b/tests/small/TransientHeat2DTableSource/qdot.dat deleted file mode 100644 index b44c17fe50..0000000000 --- a/tests/small/TransientHeat2DTableSource/qdot.dat +++ /dev/null @@ -1,5 +0,0 @@ -0 20000 -1 15000 -2 10000 -3 5000 -4 0