Hi
Thanks much for sharing the input files. It was very helpful. The following was needed for me to make it run on quoFEM
1. Uncomment the last three linesThose look like the correct way of writing results.out for the maximum load.
2. Change the python path to your own system python pathCurrently, the Windows version of quoFEM is distributed with its own python exe (v3.8) and OpenSeesPy (v3.3.0.1). But I think some of your functions only work with OpenSeesPy v3.4, which requires python v3.9. To solve this issue, you can make quoFEM use your system python exe instead the default one. To do this, go to file-preferences and check 'custom python' and change the path to the system python path (You can find the system python path by typing 'where.exe python' on the command prompt). Also, to make sure all the SimCenter dependencies are installed in this python exe, do 'pip install nheri_simcenter --upgrade'
3. Comment out IPython and matplotlibI commented out the lines related to IPython and plt.show(). When I tested the input script (by typing 'python Benchmarked_Rectangular_Encased_column_quoFEM.py'), these parts were blocking the analysis.
4. Created params.py fileI picked up the following lines from the main script and moved them to params.py
- hp=280 #height of the profile
- bp=280 #width of the profile
- fy=426 #profile yield
- Ey=210000 #profile E modul
Please do #2 and then try running the analysis with the attached scripts (to have #1,#2, and #4) and let us know how it goes!
Sang-ri