Focus¶
simfs_fcs
evaluates a foucs function on a stream of molecular coordinates.
Signature¶
$ simfs_fcs [list] [exi|det] [gauss|alpha|efield] < params.json > log.json
list
: don’t run, only parse parametersexi|det
: choose excitation or detection mode (default: excitation)gauss|alpha|efield
: choose focus funcition (default: gauss)
Parameters¶
Mode:
-
excitation.json
¶ Parameters of simfs_fcs exi
Object Properties:
-
detection.json
¶ Parameters of simfs_fcs det
Object Properties:
Kind:
-
gauss.json
¶ Additional foucus parameters of simfs_fcs gauss
Object Properties:
Example params.json¶
Gaussian excitation: simfs_fcs gauss exi < params.json
{
"focus": {
"waist_x": 2e-07,
"waist_y": 2e-07,
"waist_z": 8e-07
},
"input": "__coordinates__",
"output": "__focus__",
"power": 1e-10,
"wavelength": 4.88e-07
}
Gaussian detection: simfs_fcs gauss det < params.json
{
"focus": {
"waist_x": 2e-07,
"waist_y": 2e-07,
"waist_z": 8e-07
},
"input": "__coordinates__",
"output": "__focus__"
}
Alpha excitation: simfs_fcs alpha exi < params.json
{
"focus": {
"waist_xy": 2e-07,
"waist_z": 8e-07
},
"input": "__coordinates__",
"output": "__focus__",
"power": 1e-10,
"wavelength": 4.88e-07
}
Alpha detection: simfs_fcs alpha det < params.json
{
"focus": {
"waist_xy": 2e-07,
"waist_z": 8e-07
},
"input": "__coordinates__",
"output": "__focus__"
}
Notes¶
Excitation focus function evaluate a photon flux density, according to a total power level. Detection functions are normalized to values between 0 and 1.