-
Notifications
You must be signed in to change notification settings - Fork 2
/
SwiftCompGUI.py
32 lines (25 loc) · 916 Bytes
/
SwiftCompGUI.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- coding: utf-8 -*-
# ******************************************************************************
# Custom Beam Frame Analysis GUI Application
# This script creates and launches the Beam GUI application
# ******************************************************************************
from abaqusGui import AFXApp
import sys
from scCaeMainWindow import SCCaeMainWindow
# Initialize application object
# In AFXApp, appName and vendorName are displayed if productName is set to ''
# otherwise productName is displayed.
app = AFXApp(appName = 'ABAQUS/CAE',
vendorName = 'SIMULIA',
productName = 'Abaqus-SwiftComp GUI',
majorNumber = 6,
minorNumber = 16,
updateNumber = 0,
prerelease = False)
app.init(sys.argv)
# Construct main window
SCCaeMainWindow(app)
# Create application
app.create()
# Run application
app.run()