{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

ABAQUS Python二次开发攻略 CAE分析大系

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

ABAQUS Python二次开发攻略 CAE分析大系

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

ABAQUS原厂推荐的二次开发图书
全实例ABAQUS/Python程序的图书
面向解决工程实际问题的图书
全部案例源代码
图书+微信订阅号+QQ群+SimWe论坛=可沟通交流的生态系统教程
Content Description

本书是作者结合自己多年Abaqus 使用经验,在汲取国内外大量资料的基础上编写的一本Python 二次开发知识点笔记。内容涉及开发环境的搭建、Python 基础语法知识、Abaqus Python API 讲解,并以实例展示的方式详细阐明了二次开发的流程和方法。本书可以帮助正在使用Abaqus 进行仿真分析工作的工程师或者科研人员学习Abaqus Python 二次开发方法,同时对熟悉Abaqus 二次开发流程的读者也有一定的借鉴价值。
Author Description

苏景鹤:SimWe论坛版主,自西安交通大学力学硕士毕业后一直从事结构分析与优化相关工作,有丰富的有限元分析经验。业余爱好程序设计,兴趣主要集中在数值分析方法与CAE软件二次开发方面。
江丙云:SimWe论坛、研发埠版主,精通ABAQUS结构分析、多物理场联合分析等,超过6年世界500强电子企业有限元分析经验,专职于机电产品工程分析及其优化设计;上海交通大学博士,出版有《CAE分析大系——ABAQUS工程实例详解》。
Catalogue

第一部分引言

第1章Abaqus二次开发简介12
1.1为什么是Python12
1.2Python、FORTRAN与Abaqus13
1.3基于Python二次开发14

第2章Python能力确认17
2.1测试程序17
2.2程序运行结果22

第3章脚本的运行与开发环境23
3.1Abaqus中脚本的运行23
3.1.1命令区KCLI(Kernel Command Line Interface)23
3.1.2CAE-Run Script24
3.1.3Abaqus Command24
3.1.4Abaqus PDE25
3.2选择自己的Python开发环境26
3.2.1Abaqus PDE26
3.2.2IDLE27
3.2.3Notepad++28
3.2.4EditPlus29
3.2.5选择合适的编程环境32

第二部分Python基础

第4章Python数据类型与操作符34
4.1基本数据类型34
4.2列表、元组和字符串36
4.2.1列表(list)36
4.2.2元组(tuple)38
4.2.3字符串(str)40
4.2.4列表、元组和字符串的关系42
4.3字典43
4.4集合45
4.5操作符46
4.5.1赋值操作符46
4.5.2数字类型的操作符46
4.5.3序列类型的操作符48
4.5.4字典和集合的操作符50

第5章表达式和流程控制51
5.1表达式和程序执行流程51
5.2分支语句if-else52
5.3循环语句54
5.3.1while循环语句54
5.3.2for循环语句55
5.4中断和退出58
5.4.1break语句58
5.4.2continue语句59
5.5特殊语句pass60

第6章函数61
6.1定义函数61
6.2函数中的参数传递与调用方法63
6.3几个特殊的函数关键字64
6.3.1Lambda关键字与匿名函数64
6.3.2Map关键字与批量化函数操作66
6.3.3Reduce关键字和求和67
6.3.4Filter关键字和条件选择67

第7章对象和类69
7.1对象69
7.2类70
7.2.1如何定义类70
7.2.2如何使用类71
7.2.3子类、父类和继承72
7.2.4几个特殊的实例属性和类方法74
7.3模块和包75
7.3.1模块75
7.3.2模块的路径搜索76
7.3.3名称空间77
7.3.4包78

第8章文件和目录79
8.1文件读写操作79
8.2目录操作82
8.3文件的压缩和备份85
8.4综合实例87

第9章异常处理89
9.1Python中常见的异常90
9.2自定义异常92
9.3使用异常93
9.4再看异常处理的作用95

第10章常用Python扩展模块介绍96
10.1NumPy和高效数据处理97
10.1.1创建数组98
10.1.2数组操作99
10.1.3数组运算100
10.1.4线性代数100
10.2SciPy与数值计算101
10.2.1插值101
10.2.2拟合101
10.2.3极值问题102
10.3Matplotlib和图表绘制103
10.3.1二维点线数据绘制104
10.3.2辅助散点和线图绘制105
10.3.3简单三维数据可视化107
10.4Xlrd/xlwt与读写Excel109
10.4.1读取Excel文件109
10.4.2写入Excel数据109
10.5Reportlab和PDF110
10.6联合使用类库111

第11章Python编程中的效率问题114
11.1时间成本优化114
11.1.1使用内建函数(built-in Function)114
11.1.2循环内部的变量创建115
11.1.3循环内部避免不必要的函数调用117
11.1.4使用列表解析118
11.1.5尽量减少IO读写118
11.1.6使用优秀的第三方库119
11.1.7其他120
11.2空间成本优化120
11.2.1使用xrange处理长序列120
11.2.2注意数据类型的使用121
11.2.3使用iterator122

第三部分Abaqus/Python基础

第12章Abaqus Script入门124
12.1GUI操作Vs rpy脚本日志124
12.2对脚本进行简单的二次开发133

第13章Abaqus/Python基础135
13.1Abaqus/Python中的数据类型135
13.1.1符号常值(SymbolicConstants)135
13.1.2布尔值(Booleans)135
13.1.3特有的模型对象136
13.1.4序列(Sequences)136
13.1.5仓库(Repositories)137
13.2Abaqus/Python的对象的访问和创建138
13.2.1对象的访问139
13.2.2对象数据的修改140
13.2.3对象的创建140
13.3Abaqus/Python中的主要对象概况141
13.3.1Abaqus中的Session对象142
13.3.2Abaqus中的Mdb对象143
13.3.3Abaqus中的Odb对象145

第14章Session对象的使用146
14.1Viewport及其相关对象147
14.2Path对象152
14.3XYData对象153
14.4XYCurve和XYPlot对象154
14.5writeXYReport和writeFieldReport函数157

第15章Mdb对象的使用160
15.1Model类与有限元模型的建立161
15.1.1Sketch和Part对象162
15.1.2Material和Section对象166
15.1.3Assembly对象167
15.1.4Step对象169
15.1.5Region对象170
15.1.6Constraint和Interaction对象171
15.1.7Mesh函数172
15.1.8BoundaryCondition和Load对象173
15.2Job命令176

第16章Odb对象的使用177
16.1Odb对象中模型数据178
16.1.1Material对象178
16.1.2孤立网格数据信息178
16.1.3集合对象182
16.2Odb对象中结果数据的读取184
16.2.1场变量数据的处理186
16.2.2历史变量数据的处理189
16.3Odb数据文件的写入190
16.3.1已有模型添加特定数据190
16.3.2生成完整的Odb对象192

第17章几个常见问题195
17.1几何和网格元素的选择195
17.1.1内置的选择函数195
17.1.2基于特征的筛选方法197
17.2几何元素的特征操作199
17.3具有集合性质的对象201
17.4监测任务运行过程和结果204
17.5交互式输入与GUI插件206
17.5.1交互输入207
17.5.2GUI插件制作208

第四部分应用实例

第18章悬链线问题218
18.1悬链线的方程218
18.2利用Abaqus分析悬链线曲线特征221
18.2.1建立分析脚本221
18.2.2确定合适的初始拉伸量223
18.2.3拉伸刚度的影响224

第19章扭力弹簧的刚度227
19.1扭力弹簧的理论分析公式227
19.2利用Abaqus分析扭力弹簧229
19.2.1梁单元模拟扭力弹簧229
19.2.2实体单元模拟扭力弹簧234
19.3结果对比236

第20章圆角处网格研究238
20.1带孔薄板238
20.1.1理论分析238
20.1.2模型计算239
20.2台阶板倒角处的应力244
20.2.1理论分析244
20.2.2有限元模拟245

第21章优化问题249
21.1水下圆筒的抗屈曲设计249
21.1.1问题的描述249
21.1.2参数化模型250
21.1.3优化策略251
21.1.4求解与结果254
21.2过盈配合设计258
21.2.1问题描述258
21.2.2参数化模型建模258
21.2.3优化策略与结果263
21.3笔盖的插入力的确定268
21.3.1问题描述268
21.3.2参数化模型建模268
21.3.3优化策略与结果273

第22章分析之间的数据传递277
22.1数据传递方法之InitialState277
22.1.1数据传递前的准备277
22.1.2Standard数据导入Explicit的步骤278
22.1.3数据导入实例:冲压成型分析279
22.2数据传递方法之Map solution284
22.2.1Map solution使用格式284
22.2.2数据映射实例:拉拔成型287

第23章Python和子程序295
23.1Fortran基本用法295
23.1.1Fortran基本语法295
23.1.2Fortran程序实例296
23.2Python处理子程序的一般方法297
23.3实例:Dload动态轴承载荷299
23.3.1滚子间力的分布299
23.3.2Hertz接触理论300
23.3.3Dload子程序模板301
23.3.4Python建模程序303
23.4实例:基于Dflux的焊接热分析305
23.4.1焊接分析热源类型306
23.4.2Dflux子程序模板307
23.4.3焊接自动化分析脚本309

参考文献316

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book