-
Consider the following MWE:
```modelica
model MWE
Boolean y, z(start = false, fixed = true);
equation
y = sample(0.5,1);
when y then
z = true;
elsewhen not y then
z = false;
…
-
Here's an example of a single site evaluation of rainfall-driven runoff events: https://github.com/jarq6c/little_hope/blob/main/teehr-events/single_site.ipynb
The goal of this evaluation was to iso…
-
I'd like to add https://github.com/nhs-bnssg-analytics/PathSimR. Could you let me know when you have a template set up to contribute? Thanks
-
Hi,
Is there any plan to support system identification (for e.g. estimating transfer functions from FRF data) and
discrete event simulations?
Thanks
-
with the following MWE:
```modelica
model SmoothTearing
Real x;
Real y;
initial equation
der(x) = 0;
equation
der(x) = y;
y = smooth(0, if x > 0 then -2*x else -x) - 1;
end Smooth…
-
### Problem Description
The current terrain simulation systems do not provide a sufficiently realistic, scalable, and dynamic response to both player interactions and environmental phenomena in 2D …
-
**Question❓**
Hi everyone,
I am running into an issues using discrete events and irreducible variables in [ModelingToolkit.jl](https://github.com/SciML/ModelingToolkit.jl). I made a post and [Di…
-
Variables that only depend on discrete-time variables and possibly on parameters change their values only at even times and are othewise constant. Therefore, they should only be computed during initia…
-
The attached
[HeatingSystemExogenous](https://github.com/OpenModelica/OpenModelica/files/13077754/HeatingSystemExogenous.mo.txt) package contains some test cases of systems that can hugely benefit f…
-
Hello,
I am considering to use osBrain for my simulation but I need a virtual time simulation, not real-time. Is it possible to add a virtual time for agents in osBrain like discrete event simulation…