資源簡(jiǎn)介
《ABAQUS Python二次開發(fā)攻略 CAE分析大系》(蘇景鶴 江丙云)含code
內(nèi)容涉及開發(fā)環(huán)境的搭建、Python 基礎(chǔ)語(yǔ)法知識(shí)、Abaqus Python API 講解,并以實(shí)例展示的方式詳細(xì)闡明了二次開發(fā)的流程和方法。
內(nèi)容涉及開發(fā)環(huán)境的搭建、Python 基礎(chǔ)語(yǔ)法知識(shí)、Abaqus Python API 講解,并以實(shí)例展示的方式詳細(xì)闡明了二次開發(fā)的流程和方法。
代碼片段和文件信息
#?-*-?coding:utf-8?-*-
import?numpy?as?np
from?scipy?import?interpolate?as?syip
x?=?np.linspace(0?5?10)
y?=?(x-2.5)**3
print?x?y
result?=?syip.interp1d(x?y)
xx?=?np.linspace(0?5?100)
yy?=?result(xx)
import?matplotlib.pyplot?as?plt
plt.plot(x?y?‘bo‘?label=‘Origin?Data‘)
plt.plot(xx?yy?‘-r‘?lw=2?label=‘linear?interp‘)
plt.xlabel(“x/xx“)
plt.ylabel(“y/yy“)
plt.legend()
plt.show()
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件???????5717??2013-11-26?14:24??code\chapter10\80_Noryl?731?Campus?data.txt
?????文件??????25310??2013-11-28?23:56??code\chapter10\Case_10_1.png
?????文件????????407??2015-04-06?16:39??code\chapter10\Case_10_1.py
?????文件???????1277??2013-12-15?20:18??code\chapter10\Case_10_2.py
?????文件????????384??2015-04-06?16:29??code\chapter10\Case_10_3.py
?????文件???????1851??2013-12-15?19:28??code\chapter10\Case_10_4.py
?????文件????????241??2015-04-06?17:02??code\chapter10\Case_10_5.py
?????文件????????960??2015-04-06?18:29??code\chapter10\Case_10_6.py
?????文件???????6960??2015-04-04?17:12??code\chapter10\Case_10_7.py
?????文件??????84254??2013-12-16?22:55??code\chapter10\CreepFittingReport.pdf
?????文件???????5632??2015-04-06?17:02??code\chapter10\example.xls
?????文件??????85992??2015-04-06?18:35??code\chapter10\fig.png
?????文件????1608741??2015-04-04?13:50??code\chapter10\get-pip.py
?????文件???????8844??2013-11-25?16:53??code\chapter10\modelData.xlsx
?????文件?????800206??2015-04-06?18:23??code\chapter10\xxx.tif
?????文件????????268??2013-10-19?17:49??code\chapter11\case_11_1.py
?????文件????????323??2013-10-22?16:20??code\chapter11\case_11_10.py
?????文件????????500??2013-10-22?16:20??code\chapter11\case_11_11.py
?????文件????????794??2013-10-19?20:05??code\chapter11\case_11_2.py
?????文件????????560??2013-10-19?20:47??code\chapter11\case_11_3.py
?????文件????????589??2013-10-19?21:37??code\chapter11\case_11_4.py
?????文件????????564??2013-10-19?21:47??code\chapter11\case_11_5.py
?????文件????????550??2013-10-20?08:49??code\chapter11\case_11_6.py
?????文件????????687??2013-10-20?09:59??code\chapter11\case_11_7.py
?????文件????????516??2013-10-21?21:16??code\chapter11\case_11_8.py
?????文件????????360??2013-11-27?20:52??code\chapter11\case_11_9.py
?????文件?????180946??2011-06-09?16:30??code\chapter11\Tensile.inp
?????文件???????7812??2015-04-06?21:49??code\chapter12\Case_12_1.py
?????文件???????7917??2015-04-06?21:27??code\chapter12\Case_12_1_beam.py
?????文件???????1790??2014-03-01?22:39??code\chapter14\case_14_1.py
............此處省略352個(gè)文件信息
評(píng)論
共有 條評(píng)論