Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
|
lookup_table_filename [2026/07/31 02:51] hermann |
lookup_table_filename [2026/08/28 03:27] (current) hermann Sync from local documentation review |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Lookup Table Filename Type ====== | + | ====== Lookup Table Filename ====== |
| - | A Lookup Table Filename is a filename referring to a lookup table file on disk. If no path is given, the file is located relative to the model script. The only valid extension is ''.csv''. | + | ===== Description ===== |
| - | ===== GUI Editor ===== | + | Declares a lookup table filename value that can be reused as the input to more than one functor, or used as a constant. |
| - | [{{ :editors:lookup_table_filename_editor.png?nolink |Graphical representation of the lookup table filename editor}}] | + | ===== Inputs ===== |
| - | The lookup table filename editor presents a file browser for selecting the target lookup table file, or typing its path directly. | + | ^ Name ^ Type ^ Description ^ |
| + | | Constant | [[Lookup Table Filename Type]] | Lookup table filename value carried by this functor. | | ||
| - | ===== EGO Script ===== | + | ===== Optional Inputs ===== |
| - | A Lookup Table Filename constant is written in [[EGO Script]] the same way as a [[String Type|String]] literal, enclosed in double quotes — see [[ego_script#constants|Constants]] for the general filename validation rules: | + | None. |
| - | <code> | + | ===== Outputs ===== |
| - | "c:/data/transition_rates.csv" | + | |
| - | </code> | + | |
| - | ===== Automatic Conversions ===== | + | ^ Name ^ Type ^ Description ^ |
| + | | Object | [[Lookup Table Filename Type]] | The lookup table filename value provided as this functor's input. | | ||
| - | * **Converted from**: [[String Type]], [[Generic Filename Type]], and [[Table Value Type]]. | + | ===== Group ===== |
| - | * **Converted to**: [[String Type]], [[Generic Filename Type]], and [[Table Value Type]]. | + | [[Functor List#Lookup Table | Lookup Table]] |
| + | |||
| + | ===== Notes ===== | ||
| + | |||
| + | This functor passes its input value to its output unmodified, and can be used to feed the same lookup table filename into more than one functor, or to hold a constant lookup table filename. | ||
| + | |||
| + | ===== Internal Name ===== | ||
| + | |||
| + | LookupTableFilename | ||
| - | See [[type_system|Type System]] for the complete conversion reference across all types. | ||