We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The documentation says it is possible to reference values in the input file.
However, that is only true for numerical values. For string values, that is not possible.
It would be nice to add the functionality to reference other values, however I am not sure what syntax should be used.
a = "some_file.nc" b = :a b = `a` b = ???
Any opinions?
The text was updated successfully, but these errors were encountered:
Simple uses should be ok e.g.
b = a
(or other simple lookup like b = mesh:name) but if we want to do more complicated things like string concatenation
b = mesh:name
b = a + "_something"
then the parser will need to be more complicated: Every expression has BoutReal type currently.
Sorry, something went wrong.
No branches or pull requests
The documentation says it is possible to reference values in the input file.
However, that is only true for numerical values.
For string values, that is not possible.
It would be nice to add the functionality to reference other values, however I am not sure what syntax should be used.
Any opinions?
The text was updated successfully, but these errors were encountered: