rumoca 0.7.28

Modelica compiler written in RUST
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Differential-Algebraic Equation (DAE) representation and utilities.
//!
//! This module provides the DAE-level representation of Modelica models
//! after compilation from the IR:
//!
//! - `ast`: The DAE AST types (Dae, equations, variables)
//! - `balance`: DAE balance checking (equations vs unknowns)
//! - `error`: DAE-specific error types
//! - `jinja`: Template rendering for code generation

pub mod ast;
pub mod balance;
pub mod error;
pub mod jinja;