From 42bc6c299db5c9903c601e4ba2751e36e2f41da4 Mon Sep 17 00:00:00 2001 From: Bertrand Thierry Date: Tue, 10 Dec 2024 21:54:16 -0600 Subject: [PATCH] VTI fix: unsused variable, remove old VTI input file --- .../wavePropagation/acous3D_vti_smoke.xml | 236 ------------------ .../AcousticVTIFletcherWaveEquationSEM.cpp | 2 +- .../AcousticVTIZhangWaveEquationSEM.cpp | 2 +- 3 files changed, 2 insertions(+), 238 deletions(-) delete mode 100644 inputFiles/wavePropagation/acous3D_vti_smoke.xml diff --git a/inputFiles/wavePropagation/acous3D_vti_smoke.xml b/inputFiles/wavePropagation/acous3D_vti_smoke.xml deleted file mode 100644 index 02aaa88d91..0000000000 --- a/inputFiles/wavePropagation/acous3D_vti_smoke.xml +++ /dev/null @@ -1,236 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/coreComponents/physicsSolvers/wavePropagation/sem/acoustic/secondOrderEqn/anisotropic/AcousticVTIFletcherWaveEquationSEM.cpp b/src/coreComponents/physicsSolvers/wavePropagation/sem/acoustic/secondOrderEqn/anisotropic/AcousticVTIFletcherWaveEquationSEM.cpp index 28de4203d2..1dd5636488 100644 --- a/src/coreComponents/physicsSolvers/wavePropagation/sem/acoustic/secondOrderEqn/anisotropic/AcousticVTIFletcherWaveEquationSEM.cpp +++ b/src/coreComponents/physicsSolvers/wavePropagation/sem/acoustic/secondOrderEqn/anisotropic/AcousticVTIFletcherWaveEquationSEM.cpp @@ -602,7 +602,7 @@ real64 AcousticVTIFletcherWaveEquationSEM::explicitStepBackward( real64 const & { NodeManager & nodeManager = mesh.getNodeManager(); - arrayView1d< real32 const > const mass = nodeManager.getField< acousticfields::AcousticMassVector >(); +// arrayView1d< real32 const > const mass = nodeManager.getField< acousticfields::AcousticMassVector >(); arrayView1d< real32 > const p_nm1 = nodeManager.getField< acousticvtifields::Pressure_p_nm1 >(); arrayView1d< real32 > const p_n = nodeManager.getField< acousticvtifields::Pressure_p_n >(); diff --git a/src/coreComponents/physicsSolvers/wavePropagation/sem/acoustic/secondOrderEqn/anisotropic/AcousticVTIZhangWaveEquationSEM.cpp b/src/coreComponents/physicsSolvers/wavePropagation/sem/acoustic/secondOrderEqn/anisotropic/AcousticVTIZhangWaveEquationSEM.cpp index 6d11fe212e..660957365e 100644 --- a/src/coreComponents/physicsSolvers/wavePropagation/sem/acoustic/secondOrderEqn/anisotropic/AcousticVTIZhangWaveEquationSEM.cpp +++ b/src/coreComponents/physicsSolvers/wavePropagation/sem/acoustic/secondOrderEqn/anisotropic/AcousticVTIZhangWaveEquationSEM.cpp @@ -599,7 +599,7 @@ real64 AcousticVTIZhangWaveEquationSEM::explicitStepBackward( real64 const & tim { NodeManager & nodeManager = mesh.getNodeManager(); - arrayView1d< real32 const > const mass = nodeManager.getField< acousticfields::AcousticMassVector >(); + // arrayView1d< real32 const > const mass = nodeManager.getField< acousticfields::AcousticMassVector >(); arrayView1d< real32 > const p_nm1 = nodeManager.getField< acousticvtifields::Pressure_p_nm1 >(); arrayView1d< real32 > const p_n = nodeManager.getField< acousticvtifields::Pressure_p_n >();