Город МОСКОВСКИЙ
00:04:11

How to customize Abaqus GUI by Python scripting and enter the parameters of Python code from GUI

Аватар
Программистская Практика
Просмотры:
24
Дата загрузки:
02.12.2023 06:03
Длительность:
00:04:11
Категория:
Лайфстайл

Описание

This video shows How to customize Abaqus GUI by Python scripting. The following commands are used to enter the parameters of Python code from GUI.

VF = getInput('Vf:\tVolume fraction','0.5')
Vf = float (VF)

Dimensions = getInputs(fields=(('Width:\tUnit cell width','1'),
('Hight:\tUnit cell Hight','1'),('Depth:\tDepth in longitudinal direction','1')),
label='Specify unit cell dimensions:',
dialogTitle='Create Matrix', )
W = float (Dimensions[0])
H = float (Dimensions[1])
De = float (Dimensions[2])

Рекомендуемые видео