From c6f6580343544114726a57bb6093c155ccd8d87d Mon Sep 17 00:00:00 2001 From: MaguetteD <102769925+MaguetteD@users.noreply.github.com> Date: Thu, 10 Oct 2024 16:27:17 +0200 Subject: [PATCH] Update Scene.java --- .../org/noise_planet/noisemodelling/pathfinder/path/Scene.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/noisemodelling-pathfinder/src/main/java/org/noise_planet/noisemodelling/pathfinder/path/Scene.java b/noisemodelling-pathfinder/src/main/java/org/noise_planet/noisemodelling/pathfinder/path/Scene.java index 8cd036dbd..c8a7a833f 100644 --- a/noisemodelling-pathfinder/src/main/java/org/noise_planet/noisemodelling/pathfinder/path/Scene.java +++ b/noisemodelling-pathfinder/src/main/java/org/noise_planet/noisemodelling/pathfinder/path/Scene.java @@ -95,7 +95,7 @@ public void setBodyBarrier(boolean bodyBarrier) { /** Maximum source distance */ public double maxSrcDist = DEFAULT_MAX_PROPAGATION_DISTANCE; - /** Maximum reflection wall distance from receiver vers source line */ + /** Maximum reflection wall distance from receiver to source line */ public double maxRefDist = DEFAULT_MAXIMUM_REF_DIST; /** Source factor absorption */ public double gS = DEFAULT_GS; @@ -112,7 +112,6 @@ public void setBodyBarrier(boolean bodyBarrier) { /** Progression information */ public ProgressVisitor cellProg; /** list Geometry of soil and the type of this soil */ - //protected List soilList = new ArrayList<>(); Map sourceFieldNames = new HashMap<>(); public static final Integer[] DEFAULT_FREQUENCIES_THIRD_OCTAVE = new Integer[] {50, 63, 80, 100, 125, 160, 200, 250, 315, 400, 500, 630, 800, 1000, 1250, 1600, 2000, 2500, 3150, 4000, 5000, 6300, 8000, 10000};