登录
首页 » WINDOWS » ls-dyna_example

ls-dyna_example

于 2018-02-07 发布 文件大小:890KB
0 213
下载积分: 1 下载次数: 7

代码说明:

  ls Dyna example To test

文件列表:

airbag.deploy.k, 420459 , 2004-02-12
boundary_prescribed_motion.blow-mold.k, 207275 , 2004-02-12
constrained.butt-weld.k, 10236 , 2004-02-12
constrained.joint_planar.k, 20326 , 2004-02-12
constrained.joint_revolute.k, 7207 , 2004-02-12
constrained.linear.plate.k, 13155 , 2004-02-12
constrained.shell_solid.dome.k, 56258 , 2004-02-12
constrained.spotweld.plates.k, 13970 , 2004-02-12
contact.edge.k, 27994 , 2004-02-12
contact_entity.sphere.k, 14980 , 2004-02-12
contact.n2s-sphere.k, 559537 , 2004-02-12
contact.plates.k, 11324 , 2004-02-12
contact.projectile.k, 1036218 , 2004-02-12
contact.tied_nodes.box.k, 9277 , 2004-02-12
control_adaptive.cup-draw.k, 223770 , 2004-02-12
control_adaptive.cylinder.k, 30794 , 2004-02-12
control_adaptive.square-beam.k, 90447 , 2004-02-12
control_contact.hemi-draw.k, 212001 , 2004-02-12
control_damping.beam.k, 7288 , 2004-02-12
control_energy.bar-impact.k, 184181 , 2004-02-12
control_shell.beam-twist.k, 7638 , 2004-02-12
control_shell.hemi-load.k, 9925 , 2004-02-12
control_timestep.billet-forge.k, 824468 , 2004-02-12
damping.tire.k, 142223 , 2004-02-12
deformable_to_rigid.pendulum.k, 91352 , 2004-02-12
deformable_to_rigid.pendulum.res, 1121 , 2004-02-12
integration_shell.lobotto.beam.k, 14656 , 2004-02-12
interface_component.cube.k, 8924 , 2004-02-12
interface_component.cube.rk, 6353 , 2004-02-12
load_body.gravity.k, 15945 , 2004-02-12
load_body.shell.k, 5707 , 2004-02-12
mat_fn_rubber.element.k, 5862 , 2004-02-12
mat_piecewise_linear.plate-shatter.k, 159250 , 2004-02-12
mat_rigid.block-slide.k, 11031 , 2004-02-12
mat_soil_foam.element.k, 4876 , 2004-02-12
mat_spring.belted-dummy.k, 401377 , 2004-02-12
mat_transversely_anisotropic.cup-draw.k, 858842 , 2004-02-12
rigidwall_geometric_sphere.plate.k, 12174 , 2004-02-12
rigidwall_planar.cube.k, 7237 , 2004-02-12
rigidwall_planar.shell.k, 7473 , 2004-02-12
rigidwall_planar.symtube.k, 69671 , 2004-02-12
section_shell.hourglassing.k, 66055 , 2004-02-12
section_solid.hourglassing.k, 69903 , 2004-02-12

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

发表评论

0 个回复

  • vumat01
    jc模型中的vumat子程序,abaqus中开发(VUMAT subroutine in JC model, developed in ABAQUS)
    2018-10-31 11:30:48下载
    积分:1
  • 泊位遗传算法实验文件夹
    说明:  最简单泊位调度问题,泊位为离散型泊位,7条船,2个泊位,无需等待(The simplest berth scheduling problem is that the berths are discrete berths, with 7 ships and 2 berths, without waiting.)
    2019-11-11 09:04:23下载
    积分:1
  • celement
    layout-design of an efficient c element
    2020-06-24 22:40:01下载
    积分:1
  • 有大量的源程序,简单易懂。虽然比较简单,但是也涵盖了c语言的精华。...
    有大量的源程序,简单易懂。虽然比较简单,但是也涵盖了c语言的精华。-A large number of source code, easy to understand. Although relatively simple, but it also covers the essence of the c language.
    2022-02-03 18:19:02下载
    积分:1
  • VB API HOOK拦截程序源码
    VB 基于API HOOK拦截程序源码,演示VB如何拦截API呼叫,這是網友問的問題,雖然這個問題並不適合用VB做,但並不是做不到,要多繞一段路,這個問題重點在於執行檔中的IAT(Import Address Table) 如果你對於PE黨並不熟悉 請參考PE檔簡介。一個Process再執行時,會將許多DLL載入到行程空間中,如呼叫User32.dll中的MessageBoxW就必須將User32.dll載入到位址空間,呼叫越多不同種的API,位址空間中的模組也就越多,至於如何得知行程所載入的模組請參考如何取得Process中載入的模組的資訊。   一般來說,如果是執行Notepad.exe 我們只要攔截模組Notepad.exe的IAT即可,除非你想攔截Notepad.exe是否有透過其他DLL去執行要攔截的函數,才需要去攔截其他載入的模組,這個程式整個攔截的過程如下:   1.在要攔截的程式上配置2塊記憶體空間,一塊用來放要攔截的程式,一塊用來放所需要用的區域變數 至於如何再外部程式配置記憶體請參考如何在外部程式配置記憶體   AddressOfRemoteFunction=CreateRemoteMememory(SomeProcess,FunctionSize)   AddressOfVar=CreateRemoteMememory(SomeProcess,DataSize)   2.將要注射的函數寫到配置的位址空間 並初使化變數   Call WriteCodeTo(AddressOfRemoteFunction)   [AddressOfVar]=1   [AddressOfVar+256]=Old_FunctionAddress   3.修改IAT位址到新配置的函數
    2023-07-21 01:35:17下载
    积分:1
  • 以前一直用vb,只有这类源码。现在在学c,请支持。
    以前一直用vb,只有这类源码。现在在学c,请支持。-previously been used vb, the only such source. C in school now, please support.
    2023-06-04 12:45:03下载
    积分:1
  • ACS580使用说明书
    说明:  本手册提供规划安装、安装、调试、使用和维修传动所需的信息(This manual provides information needed for planning installation, installation, commissioning, use and maintenance of the transmission)
    2020-06-22 09:00:02下载
    积分:1
  • ZAFIRO v2.0 MT4
    Zafiro v2 is one of the best indicator to use in the forex markets, and actually has the best accuracy to trade automatically.
    2020-06-24 21:00:01下载
    积分:1
  • 小程序电商商城前台+后台
    微信商城小程序源码带后台可直接调用,后台为PHP(WeChat mall program source code can be called directly in the background)
    2020-11-16 13:49:41下载
    积分:1
  • LED驱动-123
    ws2812驱动程序,stm32f103zet6(Ws2812 driver, stm32f103zet6)
    2020-06-21 12:00:02下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载