top of page


PyQt6 simple window
from PyQt6.QtWidgets import QApplication, QWidget import sys app = QApplication(sys.argv) window = QWidget() window.show () Windows are hidden by default. It has to be shown.. app.exec() The output displayed when the code executes
Admin
Mar 231 min read
Creating a 2d load envelope with python
Acting loads on a part or an aircraft component could be huge numbers. Therefore in initaial sizing process the load cases with low...
Admin
Apr 25, 20252 min read
bottom of page