MATSim #439
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi, yes so, With MATSIM, you get traffic conditions (LV, LV_SPD,...) every 15min or 60min. To avoid computing the propagation for each traffic condition, we compute the attenuation between sources (roads) and receivers before applying it to every traffic condition. The attenuation is computed by setting all roads Lw to 0dB (this is the SOURCE_0DB table) and running the Noise_Level_From_Source script with the confExportSourceId parameter. The result (LDAY_GEOM table) then has all negative values as it represents the Lp-Lw attenuation between every source-receiver. Then to get the Lp for a specific traffic condition, we just have to arithmetically add the roads Lw in the LDAY_GEOM table and sum the contributing sources for every receiver. Does it answer your question ? |
Beta Was this translation helpful? Give feedback.
Hi, yes so,
With MATSIM, you get traffic conditions (LV, LV_SPD,...) every 15min or 60min. To avoid computing the propagation for each traffic condition, we compute the attenuation between sources (roads) and receivers before applying it to every traffic condition.
The attenuation is computed by setting all roads Lw to 0dB (this is the SOURCE_0DB table) and running the Noise_Level_From_Source script with the confExportSourceId parameter.
The result (LDAY_GEOM table) then has all negative values as it represents the Lp-Lw attenuation between every source-receiver.
Then to get the Lp for a specific traffic condition, we just have to arithmetically add the roads Lw in the LDAY_GEOM table and…