Muhammad Yasirroni
Muhammad Yasirroni
I agree with the changes. It make GridCal allowed to be statically included on other project. But, it is worth noting that there will be an edge case explained in...
Also, docs about the shape of `x` in this example: ```python # import modules import numpy as np # create a parameterized version of the classic Rosenbrock unconstrained optimzation function...
> Some ideas I have: > > pass a flag to problem.solve(), ex: problem.solve(relax_integer=True) > create a method for problem to call after solve. ex: problem.resolve_relax_integer() Sorry, forget to reply...
+1 this. There is no tutorial for recent Obsidian version? There is no option of "annotate" in the more (...) option of the markdown file. I'm using Obsidian v1.8.10 and...
Hi, I'm matpowercaseframes and matpower-pip developer. The easiest way to solve it is to run matpower-pip. ```python from matpower import start_instance from matpowercaseframes import CaseFrames m = start_instance() CASE_NAME =...
Handling per name file like `if mpc_file[-8:]=="case69.m":` is not wise and I think it should not be implemented. In my case, `oct2py` is pretty stable and reliable. If you got...
`pandapower` relies on `matpowercaseframes` to read `.m` file. Solution to read that file is already solved with `matpowercaseframes` and `matpower-pip`. If you don't want to use `matpowercaseframes` and `matpower-pip`, run...
> If you run the reproducible example above, you will get an error. Which code? Which error?
```python from matpower import start_instance from matpowercaseframes import CaseFrames m = start_instance() CASE_NAME = "case16am.m" cf_16am = CaseFrames(CASE_NAME, load_case_engine=m) ``` ```python import numpy as np import pandas as pd def...
Hmm, something must be wrong here. ```python from matpower import start_instance from matpowercaseframes import CaseFrames m = start_instance() CASE_NAME = "case16am.m" cf = CaseFrames(CASE_NAME, load_case_engine=m) import numpy as np import...