Python binding for generating `.pe` files, for use with Hilti-Profis software.
- Create new custom
.pe
files - Modify part/whole of existing
.pe
file - Add load cases to anchor design
Python 3.11 or above
Create the virutual environment and install dependencies
pip install flit
Get the latest version directly from github
git clone https://github.com/rpakishore/Hilti-Profis.git
cd Hilti-Profis
pip install flit
flit install --deps production
pip install hilti_profis
Download the git and install via flit
git clone https://github.com/rpakishore/Hilti-Profis.git
cd Hilti-Profis
pip install flit
flit install --pth-file
from hilti_profis.main import PE
anchor = PE(basefile=None) #Optionally provide an existing `.pe` file to import default values
#Change/Add values
anchor.Model['ProjectName'] = 'TestProject'
anchor.Model.Loads.Combos.delete_existing() #Delete Existing Load Combinations
anchor.Model.Loads.Combos.add(Fx=1, Fy=1, Fz=2, Mx=1, My=2, Mz=3, LoadType='Seismic', Comment='LC1') #Forces in N
anchor.Model.Loads.Combos.add(Fx=1000, Fy=1000, Fz=2000, Mx=1000, My=2000, Mz=3000, LoadType='Seismic', Comment='LC2') #Forces in N; Moments in N-mm
anchor.Model.apply() #Apply the changes
anchor.xml_content() #Get contents of `.pe` file
anchor.save('nosync-test.pe') #Save file to destination
See LICENSE for more information.
Arun Kishore - @rpakishore
Project Link: https://github.com/rpakishore/Hilti-Profis