OM.jl icon indicating copy to clipboard operation
OM.jl copied to clipboard

A Modelica Compiler in Julia

Results 12 OM.jl issues
Sort by recently updated
recently updated
newest added

If you're interested in registering your Julia packages in the [Julia General registry](https://github.com/JuliaRegistries/General), you might notice that the AutoMerge CI check has trouble parsing the license file. The easiest way...

While the frontend handles a large portion of the standard components of the MSL, some of these currently need to simulate due to the backend not handling algorithmic Modelica and...

``` ERROR: LoadError: could not load library "/Users/mkloopix/Downloads/tee/OM.jl/OMParser.jl/lib/ext/shared/x86_64-darwin20.6.0/libomparse-julia.dylib" dlopen(/Users/mkloopix/Downloads/tee/OM.jl/OMParser.jl/lib/ext/shared/x86_64-darwin20.6.0/libomparse-julia.dylib, 0x0001): tried: '/Users/mkloopix/Downloads/tee/OM.jl/OMParser.jl/lib/ext/shared/x86_64-darwin20.6.0/libomparse-julia.dylib' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64')), '/System/Volumes/Preboot/Cryptexes/OS/Users/mkloopix/Downloads/tee/OM.jl/OMParser.jl/lib/ext/shared/x86_64-darwin20.6.0/libomparse-julia.dylib' (no such file), '/Users/mkloopix/Downloads/tee/OM.jl/OMParser.jl/lib/ext/shared/x86_64-darwin20.6.0/libomparse-julia.dylib' (mach-o file,...

[FinsModel.zip](https://github.com/JKRT/OM.jl/files/8993549/FinsModel.zip) The following model has the following equations sharing the same state variable: ``` D(mH) ~ 2.0 - lambda_1 - 2.0mH, D(mH) ~ l*w - cH*p, D(k) ~ inv, -D(k)...

I saw your video about OpenModelica.jl, now OM.jl, and the conversion to MTK using OMBackend.jl. When I look at OMBackend here, I no longer see any mention of MTK. I...

The following model works: ``` model HelloWorld Real x( start = 1, fixed = true ); parameter Real a = 1; equation der(x) = - a * x; end HelloWorld;...

Thankfully the code in the tests is very clear. To get it working, I added the missing import, surrounded first arg in quotes, and changed the call to `runModelFM` ```Julia...

Something like: ``` julia> @time import OM [ Info: Precompiling OM [2f925a0b-2436-437b-858e-49aee461894b] ┌ Warning: Package OM does not have OMFrontend in its dependencies: │ - If you have OM checked...

## Reason for Removal The `deps/build.jl` script has become redundant as all dependencies are now properly specified in the `Project.toml` file. This change simplifies the project structure and dependency management...