diff --git a/TrimSP.html b/TrimSP.html index 261cd02..0a2176f 100644 --- a/TrimSP.html +++ b/TrimSP.html @@ -135,24 +135,23 @@
|
-
-
+ EF- Cutoff energy of projectiles (in eV); - must be greater than zero. - Used for low projectile energies (< 1000 eV) and ESB = 0. - EF should be of the order of ~0.2 eV, - but not above SBE (for sputtering data). - With increasing projectile energy, - EF can be increased to save computing time. - | + EF + + Cutoff energy of projectiles (in eV); must be + greater than zero. Used for low projectile energies + (< 1000 eV) and ESB = 0. EF should be of the order + of ~0.2 eV, but not above SBE (for sputtering + data). With increasing projectile energy, EF can be + increased to save computing time. + | - |
-
- KK0+
+ KK0
+
Maximum order of weak (simultaneous) collisions between projectile and target atoms:
|
|
|
|
-
- ESB+
+ ESB
+
Surface binding energy for projectiles (in eV).
This value is zero for the noble gases,
but ESB should be larger than zero if the projectile is an active
chemically species.
ESB = SBE for self-sputtering calculations.
-
+
|
|
-
- |
- KK0R+
+ KK0R
+
Maximum order of weak (simultaneous) collisions between target atoms:
|
|
|
|
-
- SHEATH+
+ SHEATH
+
Sheath potential (in eV);
typically 3 * kT (i.e., 3 * |projectile energy|).
-
+
|
|
-
- |
- KDEE1+
+ KDEE1
+
Inelastic energy loss model for projectiles:
|
|
|
|
-
- ERC+
+ ERC
+
Recoil cutoff energy (in eV);
usually equal to the surface binding energy.
-
+
|
|
-
- |
+
-
- KDEE2- Inelastic energy loss for target atoms: -
+ KDEE2
+
+ Inelastic energy loss for target atoms:
+ |
|
|
|
-
-
- RD- Depth (in Å) to which recoils are followed. - RD = 50 is usually sufficient for sputtering - (if the projectile energy is not too high). - Use RD = 100 * CW (i.e., the depth increment) - for following the full collision cascade. - |
+ + RD + + Depth (in Å) to which recoils are followed. + RD = 50 is usually sufficient for sputtering + (if the projectile energy is not too high). + Use RD = 100 * CW (i.e., the depth increment) + for following the full collision cascade. + + | - |
-
- IPOT+
+ IPOT
+
Interaction potential between projectile and target atoms:
|
|
|
|
-
- CA+
+ CA
+
Correction factor to the Firsov screening length for
collisions between projectile and target atoms
(only used in the application of the Molière potential);
usually on the order of ~1.0.
-
+
|
|
-
- |
- IPOTR+
+ IPOTR
+
Interaction potential between target atoms:
|
|
|
| + | - | -
-
-
+
Use ICRU parameters+ Force the TRIM.SP code to use stopping power parameters from the old ICRU tables. - |
-
-
+ Use ICRU parameters
+ IRL- Collision recoils: -
|
+
+ IRL
+
+ Collision recoils:
+
|
For further details see:
diff --git a/ZGUI.css b/ZGUI.css index 806521d..76eb676 100644 --- a/ZGUI.css +++ b/ZGUI.css @@ -175,3 +175,30 @@ td { line-height: 30px; /* To center it vertically */ color: white; } + +/* Tooltip container */ +.tooltip { + position: relative; + display: inline-block; + /* border-bottom: 1px dotted black; /* If you want dots under the hoverable text */ +} + +/* Tooltip text */ +.tooltip .tooltiptext { + visibility: hidden; + width: 320px; + background-color: black; + color: #fff; + text-align: left; + padding: 5px; + border-radius: 6px; + + /* Position the tooltip text - see examples below! */ + position: absolute; + z-index: 1; +} + +/* Show the tooltip text when you mouse over the tooltip container */ +.tooltip:hover .tooltiptext { + visibility: visible; +}