登录
首页 » Others » 复合材料疲劳分析-umat调用流程

复合材料疲劳分析-umat调用流程

于 2020-06-25 发布
0 370
下载积分: 1 下载次数: 4

代码说明:

本资料为作者研究生期间所做研究的总结与整理,主要是利用abaqus的umat子程序实现复合材料的疲劳分析及寿命预测,里面对umat的调用层次作了图示讲解。如需对应umat程序的,可私聊。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 西门子SCL中文手册
    西门子SCL中文手册西门子SCL中文手册西门子SCL中文手册
    2020-11-05下载
    积分:1
  • BFSU PowerConc 1.0(通用型语料库检索软件包)
    BFSU PowerConc为一款基于Windows平台的绿色软件。
    2020-06-28下载
    积分:1
  • Qt Sqlite表中数据导出为csv格式表格
    Qt中将sqlite表中的数据导出为csv表格形式,代码调用方便,整体代码包含了数据库的增删改查,tableview显示sqlite,代码较完整。开发环境为ubuntu+qt5.6.1在win7+qt5.6.1下也没问题。
    2020-12-11下载
    积分:1
  • 54张扑克牌图片 素材
    54张扑克牌图片,c4d设计,扑克牌设计应用都能用到哦,收集了很久的资料,在这里肯定能让你满意
    2020-12-07下载
    积分:1
  • 数据结构 走迷宫大作业 c语言完整代码
    数据结构走迷宫 c语言完整代码 迷宫代码 迷宫完整代码
    2021-05-06下载
    积分:1
  • 基于Simulink 的解耦系统设计与仿真
    1 绪 论 11.1 本课题的研究意义及必要性 11.2 多变量耦合系统的发展历程 12 Matlab 简介 22.1 Matlab 功能概述 22.2 Simulink 仿真概述 23 解耦控制系统的理论分析 33.1 双变量耦合系统 33.2 常见解耦方法简介 33.3 解耦补偿装置的设计及理论分析 44 仿真研究 74.1 双变量耦合系统的仿真 74.2 前馈补偿解耦控制的仿真 84.3 反馈补偿解耦控制的仿真 124.4 对角矩阵解耦控制的仿真 134.5 单位矩阵解耦控制的仿真 155 仿真结果分析 17结 束 语 18致 谢 19参考文献 2
    2020-12-04下载
    积分:1
  • 节点导纳矩阵计算
    节点电压方程 节点导纳矩阵 节点导纳矩阵修改 节点导纳矩阵计算机算法
    2020-12-04下载
    积分:1
  • 稀疏自码深度学习的Matlab实现
    稀疏自编码深度学习的Matlab实现,sparse Auto coding,Matlab codetrain, m/7% CS294A/CS294W Programming Assignment Starter CodeInstructions%%%This file contains code that helps you get started ontheprogramming assignment. You will need to complete thecode in sampleIMAgEsml sparseAutoencoder Cost m and computeNumericalGradientml For the purpose of completing the assignment, you domot need tochange the code in this filecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencodtrain.m∥%%========%6% STEP 0: Here we provide the relevant parameters valuesthat willl allow your sparse autoencoder to get good filters; youdo not need to9 change the parameters belowvisibleSize =8*8; number of input unitshiddensize 25number of hidden unitssparsity Param =0.01; desired average activation ofthe hidden units7 (This was denoted by the greek alpharho, which looks like a lower-case pcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod4/57train.,m∥in the lecture notes)1 ambda=0.0001%o weight decay parameterbeta 3%o weight of sparsity penalty term%%==:79 STEP 1: Implement sampleIMAGESAfter implementing sampleIMAGES, the display_networkcommand shouldfo display a random sample of 200 patches from the datasetpatches sampleIMAgES;display_network(patches(:, randi(size(patches, 2), 204, 1)), 8)%为产生一个204维的列向量,每一维的值为0~10000curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod5/57train.m/v%中的随机数,说明是随机取204个 patch来显示%o Obtain random parameters thetatheta= initializeParameters ( hiddenSize, visibleSize)%%=============三三三三====================================97 STEP 2: Implement sparseAutoencoder CostYou can implement all of the components (squared errorcost, weight decay termsparsity penalty) in the cost function at once, butit may be easier to do%o it step-by-step and run gradient checking (see STEP3 after each stepWecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod6/57train. m vb suggest implementing the sparseAutoencoder Cost functionusing the following steps(a) Implement forward propagation in your neural networland implement the%squared error term of the cost function. Implementbackpropagation tocompute the derivatives. Then (using lambda=beta=(run gradient Checking%to verify that the calculations corresponding tothe squared error costterm are correctcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod7/57train. m vl(b) Add in the weight decay term (in both the cost funcand the derivativecalculations), then re-run Gradient Checking toverify correctnessl (c) Add in the sparsity penalty term, then re-run gradiChecking toverify correctnessFeel free to change the training settings when debuggingyour%o code. (For example, reducing the training set sizecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod8/57train m vl/number of hidden units may make your code run fasterand setting betaand/or lambda to zero may be helpful for debuggingHowever, in yourfinal submission of the visualized weights, please useparameters web gave in Step 0 abovecoS七grad]sparseAutoencoderCost(theta, visibleSize,hiddensize, lambda,sparsityParam, beta,patches)二〓二二二二二二二〓二〓二〓二〓=二====〓=curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod9/57train.m vlll96% STeP 3: Gradient CheckingHint: If you are debugging your code, performing gradienchecking on smaller modelsand smaller training sets (e. g, using only 10 trainingexamples and 1-2 hiddenunits) may speed things upl First, lets make sure your numerical gradient computationis correct for a%o simple function. After you have implemented computeNumerun the followingcheckNumericalGradientocurer:YiBinYUyuyibintony@163.com,WuYiUniversityDeep Learning, MATLAB Code for Sparse Autoencode10/57
    2020-12-05下载
    积分:1
  • 最简单m序列的生成,利用m序列生成新的伪随机序列
    MATLAB源码,m序列的生成,可直接运行,并利用m序列生成新的伪随机序列。备注:CSDN老是主动加积分,这点很生气。我设的积分不多,如果没积分的话,直接和我说,给不给看心情,但不要说谎,下载明细我看的到的,积分不够的时候,我也用淘宝买过订单下过文件。真诚交流,拒绝借口!
    2021-05-06下载
    积分:1
  • JavaEE图书管理系统(实训作业)
    JavaEE开发的图书管理系统,美工界面做的很酷,适合新手学习使用,JAVAEE期末实训作业。
    2020-11-28下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载