Ask Your Question

Revision history [back]

Thank you for your wonderful tool jconto! After adding the necessary libraries, all of the example functions in "testall.bat" were able to run except the damping ratio example "chanPe_dmp.ini". I found that the reason for this was the version of the Pandas library. I had installed Pandas using "pip install pandas", which installed the most recent version (v2.1.4). However, the Channels tool relies on the pandas "append" attribute which is depreciated in Pandas 2.x, which uses the attribute "concat" instead of "append" (https://stackoverflow.com/questions/75956209/error-dataframe-object-has-no-attribute-append). I uninstalled Pandas, then reinstalled using "pip install pandas==1.5.3" and then the damping ratio example worked. Posting here so that others can resolve the issue more quickly than I did.

Thanks again for sharing your hard work!

Jeff Eggebraaten