-
Hi Felix, Happy New Year! Recently, while using SSD to simulate waveforms, I’ve encountered some results that I can’t understand and would like your advice. You can find the detector details in detector.yaml. detector.zip My question is:
②When the position changes (only the Z-coordinate) to (7.9, 0, 5) #mm, the waveforms shows Strip7 as the main collect ③Similarly, when energy deposits at position = (4.9, 0, 3) mm, the simulated waveform shows Strip6 as the main collecting electrode, but Strip5 also unexpectedly collects some energy. I have checked detector.yaml, as well as the electric field and potentials, and haven’t found any issues. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Happy new year. I had a look at your config file, but it looks good to me. I do not think it is an issue with the config file but with the simulation settings. simulate!(sim) to calculate the potentials and fields. I can reproduce your plot when using this for (7.9, 0, 5): You might wanna increase the refinement for the electric potential calculation, for example using: # increase refinement of electric potential and field calculation
simulate!(sim, min_tick_distance = 0.001u"mm")
calculate_electric_potential!(sim, refinement_limits = [0.2,0.1,0.05,0.02], min_tick_distance = 0.001u"mm")
calculate_electric_field!(sim) |
Beta Was this translation helpful? Give feedback.
-
Maybe some more explanation why to increase the The minimum tick distance in the electric potential calculation is set to With default
|
Beta Was this translation helpful? Give feedback.
Happy new year.
I had a look at your config file, but it looks good to me.
I rewrote the config file, mainly removing
phi: from: 0; to: 360
(you don't need this if its 360°), reducingr: from: 0; to: 11
to justr: 11
(iffrom
is 0, you don't need to specify it) and replacing your strip geometries byintersection
rather thandifference
, which makes it easier to cross-check the detector strip position: detector.zipI do not think it is an issue with the config file but with the simulation settings.
I assume you use something like
simulate!(sim)
to calculate the potentials and fields. I can reproduce your plot when using this for (7.9, 0, 5):
You might wanna increase the refinement for the …