Jianjun Hu
Jianjun Hu
This issue is to enable the output of svg diagram view of a modelica class.
This issue is to enable the output of point list as part of the html output. The control point list is specified as in http://obc.lbl.gov/specification/cdl.html#point-list
This issue is to add the html and docx output, as the output showing in version 0.1.0. It would be needed for sequence documentation and general model documentation.
This issues is to carry out the feature as described in #102, after the new json schema being applied in current version.
This closes #203. - [x] fixed the logical expression - [x] update the standard version from version 10, to 17, the latest version, see https://www.npmjs.com/package/standard. By running the `npx standard`,...
In Buildings library, class `Buildings.Controls.OBC.ASHRAE.G36.VentilationZones.ASHRAE62_1.Setpoints`, the enable condition in ``` parameter Boolean have_typTerUni=false "True: the zone has typical terminal units and CO2 sensor" annotation(Dialog(enable=have_CO2Sen and not have_SZVAV and not have_parFanPowUni));...
The `eval()` which is applied by `mathjs.evaluete()` in `modelica-json/lib/evaluateMath.js` should be avoided. See why from [here](https://www.geeksforgeeks.org/why-should-you-avoid-the-javascript-eval-function/?ref=rp). It will fail the `npm standard` test. ``` standard: Use JavaScript Standard Style (https://standardjs.com)...
This issue is to update the unit test to test the new `--strict` argument.
Current raw-json output have the sections like: ``` "if_expression": { "if_elseif": [] } ``` It should be `null` so not in the json output. The cause is in the file...
The circular dependency, such like in `lib/util.js` requiring `lib/parser.js`, while `lib/parser.js` requiring `lib/util.js`, will cause warnings as below. This issue is to eliminate the circulation and avoid the warnings. ```...