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
Currently, this fail:
mapdl.parameters['mypar'] = "hi there"
I think it was due to parsing issues on the client.
Use this:
mapdl.input_strings(""" STR_ARRAY= *DIM, STR_ARRAY, STRING, 80, 3 STR_ARRAY(1,1) = '1---------2---------3---------4---------5---------6---------7---------8---------9---------10--------11--------12--------' STR_ARRAY(1,2) = 'x1---------2---------3---------4---------5---------6---------7---------8---------9---------10--------11--------12--------' STR_ARRAY(1,3) = 'x1 2 3 4 5 6 7 8 9 10 11 12 ' *cfopen,'file.txt' *VWRITE,STR_ARRAY(1,1) %C *cfclose """) mapdl.download("file.txt")
The text was updated successfully, but these errors were encountered:
Surprisingly, this does not work either:
>>> mapdl.parameters['adf'] = "32_chars_leng".center(32, 's') >>> mapdl.parameters['adf'] ''
Edit Nevermind: It does not work on the debugger.. not sure why
Sorry, something went wrong.
No branches or pull requests
Currently, this fail:
I think it was due to parsing issues on the client.
Suggestions:
Use this:
The text was updated successfully, but these errors were encountered: