声振论坛

 找回密码
 我要加入

QQ登录

只需一步,快速开始

查看: 2186|回复: 7

[转子动力学] 在转子瞬态分析中设定时间步提前结束的问题

[复制链接]
发表于 2011-1-12 22:12 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?我要加入

x
我在做转子瞬态分析的时候,deltim,tinc,tinc/200,tinc*200     其中tinc=4   
但是运算的时候还没有到4就结束了(3秒就结束),问题就出来了,这样导致我只能查看0秒到3秒的振动情况,3秒到4秒之间 的振动就查看不了  问这是怎么回事,应该怎么调参数?是不是和时间步的取值有关?

未命名.jpg
回复
分享到:

使用道具 举报

发表于 2011-1-13 09:04 | 显示全部楼层
载荷步终点时间是否设置?对照一下吧,说实话你这个响应曲线也太差了
下面是典型的用模态叠加法进行瞬态动力学分析的输入命令流:
  1. !Build the Model
  2. /FILNAM,...! Jobname
  3. /TITLE,...! Title
  4. /PREP7! Enter PREP7
  5. ---
  6. ---! Generate model
  7. ---
  8. FINISH
  9. !Obtain the Modal Solution
  10. /SOLU! Enter SOLUTION
  11. ANTYPE,MODAL! Modal analysis
  12. MODOPT,REDU! Reduced method
  13. M,...! Master DOF
  14. TOTAL,...
  15. D,...! Constraints
  16. SF,...! Element loads
  17. ACEL,...
  18. SAVE
  19. SOLVE
  20. FINISH
  21. !Obtain the Mode Superposition Transient Solution
  22. /SOLU! Re-enter SOLUTION
  23. ANTYPE,TRANS! Transient analysis
  24. TRNOPT,MSUP,...! Mode superposition method
  25. LVSCALE,...! Scale factor for element loads
  26. F,...! Nodal Loads
  27. MDAMP,...! Modal damping ratios
  28. DELTIM,...! Integration time step sizes
  29. LSWRITE! Write first load step (Remember: the first load step
  30. ---! is solved statically at time=0.)
  31. ---
  32. ---! Loads, etc. for 2nd load step
  33. TIME,...! Time at end of second load step
  34. KBC,...! Ramped or stepped loads
  35. OUTRES,...! Results-file data controls
  36. ---
  37. LSWRITE! Write 2nd load step (first transient load step)
  38. SAVE
  39. LSSOLVE! Initiate multiple load step solution
  40. FINISH
  41. !Review results of the mode superposition solution
  42. /POST26! Enter POST26
  43. FILE,,RDSP! Results file is Jobname.RDSP
  44. SOLU,...! Store solution summary data
  45. NSOL,...! Store nodal result as a variable
  46. PLVAR,...! Plot variables
  47. PRVAR,...! List variables
  48. FINISH
  49. !Expand the Solution
  50. /SOLU! Re-enter SOLUTION
  51. EXPASS,ON! Expansion pass
  52. NUMEXP,...! No. of solutions to expand; time range
  53. OUTRES,...! Results-file data controls
  54. SOLVE
  55. FINISH
  56. !Review the Results of the Expanded Solution
  57. /POST1
  58. SET,...! Read desired set of results into database
  59. PLDISP,...! Deformed shape
  60. PRRSOL,...! Reaction loads
  61. PLNSOL,...! Contour plot of nodal results
  62. PRERR! Global percent error (a measure of mesh adequacy)
  63. ---
  64. ---! Other postprocessing as desired
  65. ---
  66. FINISH
复制代码
 楼主| 发表于 2011-1-13 11:10 | 显示全部楼层
回复 2 # yejet 的帖子

你好!我加的是离心力,不知道按照你上面的方法怎么来加?下面是我一开始编写的程序,运行之后就出现上面图形的问题,希望能够给予指点~~谢谢
finish
/clear
/prep7
/file,rotordynamic
ro_shaft =0.0095/2
MP,EX,1,2.1E+11
MP,DENS,1,7830
MP,PRXY,1,0.26
!定义单元类型
! ** elements types
et,1,188
sect,1,beam,csolid
secdata, ro_shaft,20
et,2,21             !集中质量单元
r,2,1.4,1.4,1.4,5E-4,5E-4,1E-3
et,5,21             !集中质量单元
r,5,1.15
et,3,14,,1
r,3,90000,48
et,4,14,,2
r,4,90000,48
! ** shaft
type,1
secn,1
mat,1
k,1
k,2,,,0.4
l,1,2
lesize,1,,,10
lmesh,all

! ** disk
type,2
real,2
e,8
type,5
real,5
e,2


! ** bearing
n,60,-0.01,,0.4
type,3
real,3
e,2,60
type,4
real,4
e,2,60
! ** constraints
dk,1,ux,,,,uy      
d,all,uz            
d,all,rotz
d,60,all
finish
! ** transient tabular force (unbalance)
pi = acos(-1)
spin = 6000*pi/30
tinc = 0.001
tend = 4
spindot = spin/tend
nbp = nint(tend/tinc) + 1
unb =1.4
ro_disk= 5e-5
f0 = unb*ro_disk

*dim,spinTab,table,nbp,,,TIME
*dim,rotTab, table,nbp,,,TIME
*dim,fxTab,  table,nbp,,,TIME
*dim,fyTab,  table,nbp,,,TIME
*vfill,spinTab(1,0),ramp,0,tinc
*vfill,rotTab(1,0), ramp,0,tinc
*vfill,fxTab(1,0),  ramp,0,tinc
*vfill,fyTab(1,0),  ramp,0,tinc
tt = 0
*do,iloop,1,nbp
   spinVal = spindot*tt
   spinTab(iloop,1) = spinVal
   spin2 = spinVal**2
   rotVal = spindot*tt**2/2
   rotTab(iloop,1) = rotVal
   sinr = sin(rotVal)
   cosr = cos(rotVal)
   fxTab(iloop,1)= f0*(-spin2*sinr + spindot*cosr)
   fyTab(iloop,1)= f0*( spin2*cosr + spindot*sinr)
   tt=tt+tinc
*enddo
fini

! ** transient analysis
/solu
antype,transient
nlgeom,on        !! so that the gyroscopic matrix is updated
time,tend
deltim,tinc,tinc/200,tinc*200
kbc,0
coriolis,on,,,on
omega,,,spin
f,8,fx,%fxTab%
f,8,fy,%fyTab%  
outres,all,all
solve
fini
 楼主| 发表于 2011-1-13 17:05 | 显示全部楼层
回复 2 # yejet 的帖子

说明一下:上面的图是8号点的振幅,也就是盘的振动情况
发表于 2011-1-13 18:32 | 显示全部楼层
是用ANSYS做的分析吗?
 楼主| 发表于 2011-1-13 19:10 | 显示全部楼层
回复 5 # hustxyong 的帖子

是的~~~不知道你有没有看出什么问题来呢

点评

实验室机器配置跑不起ANSYS,...  发表于 2011-1-15 19:14
发表于 2011-1-14 09:26 | 显示全部楼层
 楼主| 发表于 2011-1-14 09:34 | 显示全部楼层
回复 7 # yejet 的帖子

多谢~~~我试一试   
  不知道你有没有(或者知道哪里有)类似的例子参考一下
您需要登录后才可以回帖 登录 | 我要加入

本版积分规则

QQ|小黑屋|Archiver|手机版|联系我们|声振论坛

GMT+8, 2024-5-3 14:11 , Processed in 0.055956 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表