在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → python语言在abaqus中的应用

python语言在abaqus中的应用

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:55.07M
  • 下载次数:13
  • 浏览次数:307
  • 发布时间:2021-03-10
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
《python语言在abaqus中的应用》这本书的附件,此书是利用python语言对abaqus进行二次开发的书。
【实例截图】
【核心代码】
142993db-169d-4f4b-baa1-a81df53ef013
└── python语言在abaqus中的应用
├── chapter 0
│   ├── beam_tutorial.inp
│   ├── Mises.png
│   └── simple_beam_Example.py
├── chapter 1
│   ├── 1.1
│   │   ├── ActivePython-2.6.5.12-win32-x86.msi
│   │   └── test1.py
│   ├── 1.2
│   │   ├── EditPlus
│   │   │   └── EditPlus
│   │   │   ├── 936.chm
│   │   │   ├── 936.dll
│   │   │   ├── ansi.ctl
│   │   │   ├── chinaz.com.txt
│   │   │   ├── clear_registry.vbe
│   │   │   ├── codepage.txt
│   │   │   ├── control.ctl
│   │   │   ├── cpp.acp
│   │   │   ├── cpp.stx
│   │   │   ├── css2.ctl
│   │   │   ├── css.ctl
│   │   │   ├── css.stx
│   │   │   ├── cs.stx
│   │   │   ├── editplus.chm
│   │   │   ├── editplus.exe
│   │   │   ├── editplus_u.ini
│   │   │   ├── eppie.exe
│   │   │   ├── eppshell64.dll
│   │   │   ├── eppshell.dll
│   │   │   ├── eppshellreg.exe
│   │   │   ├── html4.ctl
│   │   │   ├── htmlbar.acp
│   │   │   ├── html.ctl
│   │   │   ├── html.stx
│   │   │   ├── initialization.vbe
│   │   │   ├── java.acp
│   │   │   ├── java.stx
│   │   │   ├── jsp.stx
│   │   │   ├── js.stx
│   │   │   ├── launcher.exe
│   │   │   ├── license-cn.txt
│   │   │   ├── license.txt
│   │   │   ├── otherfile
│   │   │   │   ├── ssce-uk.exe
│   │   │   │   └── ssce-us.exe
│   │   │   ├── OTHERS
│   │   │   │   ├── KEYGEN.EXE
│   │   │   │   ├── SETUP-SC-UK.EXE
│   │   │   │   └── SETUP-SC-US.EXE
│   │   │   ├── patch.txt
│   │   │   ├── perl.acp
│   │   │   ├── perl.stx
│   │   │   ├── php.stx
│   │   │   ├── README_CHS.TXT
│   │   │   ├── readme_cn.txt
│   │   │   ├── readme.txt
│   │   │   ├── remove.exe
│   │   │   ├── template.cpp
│   │   │   ├── template.html
│   │   │   ├── template.java
│   │   │   ├── template.pl
│   │   │   ├── templatex.html
│   │   │   ├── vb.stx
│   │   │   ├── xhtmlbar.acp
│   │   │   ├── xhtml.ctl
│   │   │   ├── xml.stx
│   │   │   ├── !)卸载.reg
│   │   │   ├── !)注册.reg
│   │   │   ├── 注册.txt
│   │   │   └── 说明.htm
│   │   └── pythonfiles
│   │   ├── python.acp
│   │   ├── python_extd.stx
│   │   └── python.stx
│   ├── 1.3
│   │   ├── black_line.py
│   │   ├── B.py
│   │   ├── compiletest1.py
│   │   ├── datatype.py
│   │   ├── from_import.py
│   │   ├── _global.py
│   │   ├── global.py
│   │   ├── _global.pyc
│   │   ├── importMath.py
│   │   ├── import.py
│   │   ├── local.py
│   │   ├── _ruleClass.py
│   │   ├── string_methods.py
│   │   ├── string.py
│   │   ├── test1.py
│   │   ├── test1.pyc
│   │   ├── test1.pyo
│   │   └── use_global.py
│   ├── 1.4
│   │   ├── animaltuple.py
│   │   ├── dict_method.py
│   │   ├── dict_visit.py
│   │   ├── list_create.py
│   │   ├── list_extend.py
│   │   ├── list_visit.py
│   │   ├── pack.py
│   │   ├── resulttuple.py
│   │   ├── sequence.py
│   │   ├── shoppinglist.py
│   │   ├── trytuple.py
│   │   └── tuple_print.py
│   ├── 1.5
│   │   ├── break.py
│   │   ├── continue.py
│   │   ├── for.py
│   │   ├── if.py
│   │   └── while.py
│   ├── 1.6
│   │   ├── create_import_module
│   │   │   ├── create_module.py
│   │   │   └── import_module.py
│   │   ├── default_parameter.py
│   │   ├── def_function.py
│   │   ├── dir_sys.py
│   │   ├── factorial.py
│   │   ├── func_apply.py
│   │   ├── func_filter.py
│   │   ├── func_map.py
│   │   ├── func_reduce.py
│   │   ├── function_return.py
│   │   ├── Generator.py
│   │   ├── keyparameter.py
│   │   ├── lambda_function.py
│   │   ├── lambda_variable.py
│   │   ├── module_attribute
│   │   │   ├── call_myModule.py
│   │   │   ├── myDoc.py
│   │   │   ├── myModule.py
│   │   │   └── myModule.pyc
│   │   ├── package_user
│   │   │   ├── main.py
│   │   │   ├── subpackage1
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── myModule1.py
│   │   │   │   └── myModule1.pyc
│   │   │   └── subpackage2
│   │   │   ├── __init__.py
│   │   │   ├── __init__.pyc
│   │   │   ├── myModule2.py
│   │   │   └── myModule2.pyc
│   │   └── sys_module.py
│   ├── 1.7
│   │   ├── class_attribute_modify.py
│   │   ├── class_attribute.py
│   │   ├── class_method_modify.py
│   │   ├── class_method.py
│   │   ├── __del__method.py
│   │   ├── gc_clear.py
│   │   ├── in_class.py
│   │   ├── inherit.py
│   │   ├── __init__method.py
│   │   ├── multi_inherit.py
│   │   ├── Myclass.py
│   │   └── polymorphism.py
│   ├── 1.8
│   │   ├── cpickle.py
│   │   ├── file_del_rename.py
│   │   ├── file.py
│   │   ├── fruit.data
│   │   ├── old.txt
│   │   └── poem.txt
│   └── 1.9
│   ├── happy.txt
│   ├── raise.py
│   ├── raise_user.py
│   ├── try_except_else.py
│   ├── try_except.py
│   └── try_finally.py
├── chapter 2
│   ├── 2.1
│   │   ├── ABAQUS_PythonReader
│   │   │   ├── PythonReader.exe
│   │   │   └── readme.txt
│   │   └── example 2-1
│   │   ├── abaqus.rpy
│   │   └── rotateview.py
│   ├── 2.2
│   │   ├── constructor_method_member.py
│   │   └── handel_exception.py
│   ├── 2.3
│   │   └── createRegions.py
│   └── 2.4
│   ├── example 2-2
│   │   └── A.py
│   └── example 2-3
│   ├── odbExample.py
│   └── viewer_tutorial.odb
├── chapter 3
│   ├── 3.1
│   │   ├── getInput.py
│   │   ├── getInputs_material.py
│   │   ├── getInputs.py
│   │   └── getWaringReply.py
│   ├── 3.2
│   │   ├── abaqusMacros.py
│   │   ├── abaqusMacros.pyc
│   │   └── material_library.py
│   └── 3.3
│   └── createPlate
│   ├── createPlateModule.py
│   └── createPlate.png
├── chapter 4
│   ├── 4.2
│   │   ├── beam3d.cae
│   │   ├── beam3d.inp
│   │   ├── beam3d.jnl
│   │   └── beam3d.odb
│   └── 4.5
│   ├── example 4-1
│   │   └── odb_Node_Element_Information.py
│   ├── example 4-2
│   │   └── odb_Read_Punch.py
│   ├── example 4-3
│   │   └── odb_Create_ODB.py
│   ├── example 4-4
│   │   └── odb_MaxMises.py
│   ├── example 4-5
│   │   ├── fieldOperation.inp
│   │   ├── fieldOperation.odb
│   │   └── U_Operation.py
│   ├── example 4-6
│   │   ├── seal.inp
│   │   ├── seal.jnl
│   │   ├── seal.odb
│   │   └── sum_S_Region.py
│   └── viewer_tutorial.odb
├── chapter 5
│   ├── example 5-1
│   │   ├── autopostprocessing.py
│   │   ├── finalStress.png
│   │   └── viewer_tutorial.odb
│   ├── example 5-2
│   │   ├── beam3d.cae
│   │   ├── beam3d.com
│   │   ├── beam3d.dat
│   │   ├── beam3d.inp
│   │   ├── beam3d.ipm
│   │   ├── beam3d.jnl
│   │   ├── beam3d.log
│   │   ├── beam3d.msg
│   │   ├── beam3d.odb
│   │   ├── beam3d.prt
│   │   ├── beam3d.sim
│   │   ├── beam3d.sta
│   │   ├── process_beam3d.py
│   │   ├── sumdisp.png
│   │   └── sumStress.png
│   ├── example 5-3
│   │   ├── xyplot.dat
│   │   └── X-Yplot_externaldata.py
│   └── example 5-4
│   ├── ODB_from_externaldata.py
│   ├── odbFromText.odb
│   ├── parseodbinfo.py
│   ├── readodbfromtext.txt
│   ├── U1_animate.avi
│   ├── U1.png
│   ├── U2_animate.avi
│   └── U2.png
├── chapter 6
│   ├── 6.1
│   │   ├── data_monitor.py
│   │   ├── monitor52U2.py
│   │   └── rubberdome.inp
│   ├── 6.2
│   │   ├── pipe_Optimization.py
│   │   └── tube_Functions.py
│   ├── 6.3
│   │   └── PythonWin.py
│   └── 6.4
│   └── rubberDome.odb
└── 版号和盘号标识.doc

55 directories, 225 files

标签:

实例下载地址

python语言在abaqus中的应用

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警