Replies: 1 comment
|
(Sorry for the late reply, missed some notifications from GitHub)
Yes, either that or the You can keep a reference to this load during the simulation and enable/disable it as you wish; this is slightly faster than getting a new reference every time. If you toggle a lot of loads, prefer using batches. I'm resuming the publication of new packages soon, including some fixes to batches. In fact, docs are some of the missing items, but we can at least publish some beta packages before a full release. # after the circuit is loaded
loadx = altdss.Load['loadx']`
#... later during the simulation
loadx.Enabled = FalseWe might rename some functions in the future to make them more explicit.
Yep, I'm on-boarding someone else to help with docs and examples; I think we'll be in a much better place by the end of the year. Thanks for the feedback! Right now we have zero funding for these projects, so docs tend to get less priority. Note that there are API docs, e.g. https://dss-extensions.org/AltDSS-Python/apidocs/altdss/altdss.Load.html#altdss.Load.ILoad.find
For AltDSS-Python, I'd recommend linking to the specific release page on PyPI, e.g. https://pypi.org/project/altdss/0.2.4/ We're considering adding Zenodo support to generate DOIs for most repositories. Might be overkill, but seems to be the most general solution for all programming languages. |
Uh oh!
There was an error while loading. Please reload this page.
I'm learning how to work with
altDSS,but I still have some basic questions:a) How can I manipulate the values of a specific element, such as a particular load? I tried using
altdss.Load.Name,but it doesn't work. Should I be usingaltdss.Load.findinstead?For example, I want to enable and disable a specific load during the simulation. How can I do that?
b) I also feel there is still a lack of documentation with more usage examples and clearer descriptions of
altDSSfunctions. However, the tool has already proven to be extremely helpful and has simplified many tasks compared todss-python. I frequently promotealtDSSwithin my research and professional circles.c) What is the correct way to cite the
altDSStool in academic papers and technical reports?Tks
All reactions