Open
Description
Currently, this fail:
mapdl.parameters['mypar'] = "hi there"
I think it was due to parsing issues on the client.
Suggestions:
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")