1)  MSC PCL
MSC PCL
1.
Shape Optimization of Three-center Shell Structures Based on MSC PCL;
基于MSC PCL的三心底结构形状优化
2)  PCL
PCL
1.
Parameter Generation for Propellant based on PCL;
基于PCL的固体推进剂性能参数拟合
2.
Improvement of Driver of PCL Multi-function Data Access Card;
PCL系列多功能数据采集卡驱动程序的改进
3.
Analyse Printer Language PCL and PostScript;
剖析打印机语言PCL与PostScript
3)  MSC
MSC
1.
Residual Stress Numerical Simulation of Cold Rolling Board Based on MSC;
基于MSC的板材冷轧残余应力分布的数值仿真
2.
Application of MSC Software in Single Cylinder Engine Design;
MSC软件在单缸柴油机设计中的应用
3.
Research on Formal Description of Component and Composition Pattern Based on MSC;
基于MSC的构件及组装模式形式化描述研究
4)  PCL/PVC
PCL/PVC
1.
Poly(ε caprolactone)/poly(vinyl chloride) (PCL/PVC) blends are widely studied polymers.
聚ε-己内酯/聚氯乙烯(PCL/PVC)是研究得最广泛的聚合物共混薄膜之一。
5)  PLLA-PCL
PLLA-PCL
1.
Study on Full Biodegradable Composites: Ramie Fibre Reinforced PLLA-PCL Composite Prepared by in Situ Polymerization Process;
原位聚合法制备全生物降解苎麻纤维增强PLLA-PCL复合材料及其性能的研究
6)  PCL/EVA
PCL/EVA
1.
In this paper polyethylene(PE), ethylene-vinyl acetate copolymers(EVA) and poly(ε-caprolactone) - ethylene-vinyl acetate copolymers blends(PCL/EVA) were crosslinked by dicumyl peroxide(DCP) or γ-ray, and shape-memory polymers were prepared.
本论文采用化学交联法和辐照交联法对聚乙烯(PE)、乙烯-醋酸乙烯酯共聚物(EVA)和聚己内酯及其共混物(PCL/EVA)进行改性,制备具有形状记忆功能的高分子材料。
参考词条
补充资料:ANSYS模型转到MSC.MARC

!ANSYS命令流
! 写单元及节点数据文件
! 作者:陆新征,清华大学土木系
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!选中所有单元
ALLSEL,ALL
! 得到当前模型中的总节点数
*GET,NNode,NODE,,COUNT, , , ,
!输出节点
*CFOPEN,Node,txt
*VWRITE
('coordinates')
*VWRITE,chrval(3),chrval(NNode),chrval(0),chrval(1)
(4A5)
*DO,I,1,NNode
*VWRITE,I,NX(I),NY(I),NZ(I)
(F8.0,3F13.5)
*ENDDO
*CFCLOS


!打开单元文件
*CFOPEN,ELEM,txt
!得到所有单元数
ESEL,S,ENAME,,65
ALLSEL,ALL
*GET,NElem,ELEM,,COUNT, , , ,
*VWRITE,chrval(NElem)
('Number of Element: ', A8)
!对单元集进行循环
*DO,I,1,NElem
!得到当前单元的类型
*GET,ENAME,ELEM,I,ATTR,ENAM
!如果是65号(65号单元)
*IF,ENAME,EQ,65,THEN
!得到该单元的节点编号
*GET,EN1,ELEM,I,NODE,1
*GET,EN2,ELEM,I,NODE,2
*GET,EN3,ELEM,I,NODE,3
*GET,EN4,ELEM,I,NODE,4
*GET,EN5,ELEM,I,NODE,5
*GET,EN6,ELEM,I,NODE,6
*GET,EN7,ELEM,I,NODE,7
*GET,EN8,ELEM,I,NODE,8
*VWRITE,I,EN1,EN2,EN3,EN4,EN5,EN6,EN7,EN8
(F8.0,8F8.0)
*END IF
*ENDDO
*CFCLOS



!Fortran程序,把ansys结果转换为MARC模型文件格式
program main
implicit none;
integer Key;
write(*,*) "Input 1 for node, 2 for element"
read(*,*) Key
if (Key==1) then
call Node_IO()
end if
if (Key==2) then
call Elem_IO()
end if
stop
end program


subroutine Node_IO()
implicit none
integer NNode,I, J
real*8,pointer :: Node(:,:)
real*8 x;
character :: filename*10;
write(*,*) "Please input node filename"
read(*,'(A10)') filename
open(66,file=filename)
read(66,*) NNode
allocate (Node(NNode,3))
do I=1,NNode
read(66,*) x, (Node(I,J), J=1,3)
end do
close (66)
filename=filename//"NEW"
open (66,file=filename)
write(66,'(4I10)') 3, NNode, 0, 1
do I=1, NNode
write(66,'(I10, 3E20.8)') I, (Node(I,J), J=1,3)
end do
close (66)
return
end subroutine Node_IO


subroutine Elem_IO()
implicit none
integer NElem,NumNode,ElemTyp,I, J
integer,pointer :: Elem(:,:)
real*8 x;
real*8,pointer :: y(:)
character :: filename*10, outformat*11,CharEtype;
write(*,*) "Please input node filename"
read(*,'(A10)') filename
write(*,*) "Please input Element type & Number of Nodes per element"

说明:补充资料仅用于学习参考,请勿用于其它任何用途。