ENH: generalize string expression evaluation

- replace stringOps::toScalar with a more generic stringOps::evaluate
  method that handles scalars, vectors etc.

- improve #eval to handle various mathematical operations.
  Previously only handled scalars. Now produce vectors, tensors etc
  for the entries. These tokens are streamed directly into the entry.
This commit is contained in:
Mark Olesen
2019-12-09 14:10:41 +01:00
parent f84ebb9ad3
commit c2123452b1
19 changed files with 141 additions and 3409 deletions

View File

@ -36,4 +36,13 @@ FoamFile
#endif
// Silly example, but can also force cast from scalar to bool
#if #eval "bool(2 * pi())"
condition true;
#else
condition false;
#endif
// ************************************************************************* //