Revising the gases available at https://sultan.unizar.es/gasFiles/gases.rml I have seen that there are some very similar definitions and I am not sure if they are all complety valid. For example, for Ar+5%isobutane there are 3 definitions:
// ----- 5.0% ---------------------------------------------------------------------------------------------
<TRestDetectorGas name="Argon-Isobutane 5Pct 10-10E3Vcm" title="Argon-Isobutane Mixture (5Pct Isobutane)">
<parameter name="pressure" value="1"/>
<parameter name="temperature" value="293.15"/>
<parameter name="maxElectronEnergy" value="400"/>
<parameter name="W_value" value="26.145"/>
<parameter name="nCollisions" value="10"/>
<eField Emin="10" Emax="1000." nodes="20"/>
<gasComponent name="ar" fraction="0.95"/>
<gasComponent name="iC4H10" fraction="0.05"/>
</TRestDetectorGas>
//------- User : jgalan ---- REST version : 2.2.7 ---------------------------
<TRestDetectorGas name="Argon-Isobutane 5Pct 10-10E3Vcm ACC" title="Argon-Isobutane Mixture (5Pct Isobutane)">
<parameter name="pressure" value="1"/>
<parameter name="temperature" value="293.15"/>
<parameter name="maxElectronEnergy" value="800"/>
<parameter name="W_value" value="26.145"/>
<parameter name="nCollisions" value="10"/>
<eField Emin="10" Emax="1000" nodes="20"/>
<gasComponent name="ar" fraction="0.95"/>
<gasComponent name="iC4H10" fraction="0.05"/>
</TRestDetectorGas>
//------- User : jgalan ---- REST version : 2.3.4 ---------------------------
<TRestDetectorGas name="Argon-Isobutane 5Pct 0.1-10E3Vcm" title="Argon-Isobutane Mixture (5Pct Isobutane)">
<parameter name="pressure" value="1"/>
<parameter name="temperature" value="293.15"/>
<parameter name="maxElectronEnergy" value="800"/>
<parameter name="W_value" value="21.965"/>
<parameter name="nCollisions" value="10"/>
<eField Emin="0.1" Emax="1000" nodes="20"/>
<gasComponent name="ar" fraction="0.95"/>
<gasComponent name="iC4H10" fraction="0.05"/>
</TRestDetectorGas>
Among the first and the second, only maxElectronEnergy
changes, but in the third one the W-value and the electric field range also change.
I have seen this is happening with other gas mixtures too, I just put this one as an example.
I also think the W-value is not correct in many cases, as 21.9 eV is a value that appears many times and it correspondes precisely to the one used in the dummy gas (which by the way is the value for pure Xe). I am not sure how much this value can effect the analysis, but I think it’s worth revising it.
There is a table in the PDG where one can obtain these values at https://pdg.lbl.gov/2019/reviews/rpp2019-rev-particle-detectors-accel.pdf, that I think could be used to revise these values:
To calculate, e.g., the W-value of 95%Xe+5%isobutane, would it be just 220.95 + 260.05 = 22.2 eV?
What do you think? Should we revise this?