Understanding VE Documentation
Posted: Wed Apr 25, 2018 7:23 pm
Hi all,
Beginner python user here. I've gone through the User Guide, but I still have a lot of questions. At the moment, I'm playing with the list of available methods within the iesve class, but am struggling to even call certain methods properly.
For instance, on page 19, 6.1.1, it goes over AirExchange. I was trying to call the method get() below:
But this gives me an ArgumentError :
Based on the userguide, the get() method doesn't take in any arguments. Am I interpreting the User Guide wrong? Why am I getting this error and how can I call the methods listed in the VE documentation?
Big thanks!
Beginner python user here. I've gone through the User Guide, but I still have a lot of questions. At the moment, I'm playing with the list of available methods within the iesve class, but am struggling to even call certain methods properly.
For instance, on page 19, 6.1.1, it goes over AirExchange. I was trying to call the method get() below:
Code: Select all
import iesve
#6.1.1 Air Exchange page 19
proj = iesve
airexchange = proj.AirExchange
print(airexchange.get())
Code: Select all
Traceback (most recent call last):
File "C:\Users\BXK\Desktop\Local Projects\BXK VE Scripts\Test\hello.py", line 7, in <module>
proj.get()
Boost.Python.ArgumentError: Python argument types in
AirExchange.get()
did not match C++ signature:
get(class AirExchange {lvalue})
>>> Runtime: 0.00 seconds
Big thanks!