Antoine FALAIZE
Antoine FALAIZE
Hi Same issue here: CentOS7, gnu8 or gnu12, make 4.4, cmake 3.25.2.
Hi Several possibilities: 1) you declare a constant `seq_u = k` for all times and put `Mxy[i,j]=x` so that `G[i,j]*u = k*x` (with appropriate i and j). 2) you can...
Note that in all the cases above the power balance computed with source term y*u will be meaningless...
Hi, Sorry for the delay. For python simulation, you should subclass `pyphs.Numeric` and set the `update` method to your needs. See [here](https://github.com/pyphs/pyphs/blob/master/pyphs/numerics/numerical_core/_numerical_core.py#L169) : ``` import pyphs as phs class NumericFeedback(phs.Numeric):...
Additionally, there is an error in the computation of the power balance for decimated data
Hi @payam-rigi; This warning indicates that the graph has been reduced by merging two components. The default in PyPHS is to not merge _except_ if **a realizability issue is detected**...
Hi Thank you for your interest There is several known issues with Faust code generation, which is not realy maintained. I could probably have a look next week to what...
thanks, I 'll have a look ASAP PyPHS is still maintained, mainly for numerical investigation of dynamical systems and not precisely for audio plugin generation. But it should still be...
Hi! Yes, originally we used generator to avoid memory overload for large input data and had to switch to arrays to be able to write the entire input data to...
Thank you @FabricioS for this benchmark. I implemented the "Numpy method" in the file numerics/simulations/h5data/tools.py called in H5Data. The code is currently in develop branch and PR pass tests. @FabricioS...