| 130 | \*---------------------------------------------------------------------------*/ |
| 131 | |
| 132 | class streamLine |
| 133 | : |
| 134 | public fvMeshFunctionObject |
| 135 | { |
| 136 | // Private data |
| 137 | |
| 138 | //- Input dictionary |
| 139 | dictionary dict_; |
| 140 | |
| 141 | //- List of fields to sample |
| 142 | wordList fields_; |
| 143 | |
| 144 | //- Field to transport particle with |
| 145 | word UName_; |
| 146 | |
| 147 | //- Interpolation scheme to use |
| 148 | word interpolationScheme_; |
| 149 | |
| 150 | //- Whether to use +u or -u |
| 151 | bool trackForward_; |
| 152 | |
| 153 | //- Maximum lifetime (= number of cells) of particle |
| 154 | label lifeTime_; |
| 155 | |
| 156 | //- Number of subcycling steps |
| 157 | label nSubCycle_; |
| 158 | |
| 159 | //- Track length |
| 160 | scalar trackLength_; |
| 161 | |
| 162 | //- Optional specified name of particles |
| 163 | word cloudName_; |
| 164 | |
| 165 | //- Type of seed |
| 166 | word seedSet_; |
| 167 | |
| 168 | //- Names of scalar fields |
| 169 | wordList scalarNames_; |
| 170 | |
| 171 | //- Names of vector fields |
| 172 | wordList vectorNames_; |
| 173 | |
| 174 | |
| 175 | // Demand driven |
| 176 | |
| 177 | //- Mesh searching enigne |
| 178 | autoPtr<meshSearch> meshSearchPtr_; |
| 179 | |
| 180 | //- Seed set engine |
| 181 | autoPtr<sampledSet> sampledSetPtr_; |
| 182 | |
| 183 | //- Axis of the sampled points to output |
| 184 | word sampledSetAxis_; |
| 185 | |
| 186 | //- File writer for scalar data |
| 187 | autoPtr<writer<scalar>> scalarFormatterPtr_; |
| 188 | |
| 189 | //- File writer for vector data |