Energy plus results multilanguage characters not supported

asked 2020-07-01 20:50:43 -0500

riteshsahoo's avatar

updated 2020-07-02 09:29:58 -0500

i compiled energy plus 9.3.0 and modified the table headings in local language . When run directly the result show the correct format texts But when run simulation from open studio the characters are not proper

edit retag flag offensive close merge delete

Comments

m_runProcess->setStandardOutputFile( toQString(stdoutPath) ); m_runProcess->setStandardErrorFile( toQString(stderrPath) ); m_runProcess->start(openstudioExePath, arguments);

Initiate the Run Simulation ... How is it handled on the openstudio core ? Which class or code handles the running of the simulation ?

riteshsahoo's avatar riteshsahoo  ( 2020-07-02 19:46:49 -0500 )edit

I think the issue is with the tbl_stream << "" << subtitle << "

\n"; the ostream write to html is not correct way ... can anyone help to suggest the write way to write multilanguage to html

std::ostream &tbl_stream(*TabularOutputFile(iStyle)); tbl_stream << subtitle << "\n\n"; --- > incorrect

riteshsahoo's avatar riteshsahoo  ( 2020-07-03 06:42:42 -0500 )edit