Skip to content

Commit

Permalink
disable NoiseDashboard in KelheimDashboardProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
tschlenther committed Jun 25, 2024
1 parent caa988b commit f0ccb05
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import org.matsim.simwrapper.Dashboard;
import org.matsim.simwrapper.DashboardProvider;
import org.matsim.simwrapper.SimWrapper;
import org.matsim.simwrapper.dashboard.NoiseDashboard;
import org.matsim.simwrapper.dashboard.TravelTimeComparisonDashboard;
import org.matsim.simwrapper.dashboard.TripDashboard;

Expand All @@ -27,8 +26,9 @@ public List<Dashboard> getDashboards(Config config, SimWrapper simWrapper) {
return List.of(
trips,
new TravelTimeComparisonDashboard(IOUtils.resolveFileOrResource( "kelheim-v3.0-routes-ref.csv.gz").toString()),
new KelheimEmissionsDashboard(),
new NoiseDashboard()
new KelheimEmissionsDashboard()
//the NoiseAnalysis needs more RAM than the entire simulation, which leads to VM crashes and prevents other analysis to run. We have to run it separately (e.g. with KelheimSimWrapperRunner)
// new NoiseDashboard()
);
}

Expand Down

0 comments on commit f0ccb05

Please sign in to comment.