1)  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的构件及组装模式形式化描述研究
2)  MSC
间充质干细胞
1.
Comparison of Influence of MSC on HL-60 under Circumstances of Leukemia and Non-Leukemia;
白血病与非白血病骨髓间充质干细胞对HL-60细胞影响的比较研究
2.
Primarily Study on the Immunoregulatory Effect of Murine MSC in Allogeneic Murine Bone Marrow Transplantation;
骨髓间充质干细胞在小鼠异基因骨髓移植中免疫调节作用的初步研究
3.
This study was purposed to investigate the feasibility to use adult adipose-derived mesenchymal stem cells (AD-MSCs) in the therapy of DMD.
为了探讨成体脂肪来源的间充质干细胞(adipose derived mesenchymal stemcell,AD-MSC)移植治疗杜氏肌营养不良症(Duchenne muscular dystrophy,DMD)的可行性,从成年GFP小鼠脂肪组织中分离得到间充质干细胞(mesen-chymal stem cell,MSC),用流式细胞术分析其细胞表型和细胞周期;在体外分别以成肌和成内皮诱导体系诱导AD-MSC的定向分化,通过免疫荧光染色和RT-PCR进行鉴定;经尾静脉移植AD-MSC到CTX肌肉损伤模型小鼠和mdx小鼠(DMD动物模型)体内,通过RT-PCR和免疫荧光染色检测供体细胞的分布和分化情况,并进行统计分析。
3)  MSC
移动交换中心
1.
Cities and provinces update their networks from the aspects of Service Control Point (SCP), Home Location Register (HLP), Mobile Switching Center (MSC), Global Mobile Switching Center (GMSC) and subscr.
现网升级为目标网需要很多的准备和测试,地市与全省通过不同的步骤完成在业务控制点(SCP)、归属位置寄存器(HLP)、移动交换中心(MSC)、网关移动交换中心(GMSC)和签约消息等方面的升级。
2.
In this article, it introduces the network management technology and the design of Digital Trunking MSC Network Management Software that base on the SNMP protocol.
本文简要介绍了网络管理技术 ,提出了一种基于简单网络管理协议的数字集群移动交换中心网络管理软件的设计与构架方案。
4)  MSC
消息序列图
1.
The method of generating TTCN-3 test cases from message sequence chart(MSC) is presented.
提出了从消息序列图(MSC)生成TTCN-3测试例的方法。
5)  MSC
组播共享类
1.
The multicast trees are firstly partitioned to forest and then classified into multicast sharing class(MSC)by overlap degree.
该算法实现过程中,引入了树分割规则,将满足分割条件的组播树分割成森林,然后根据重叠大小将汇聚的组播会话划分成多个组播共享类。
6)  MSC
修正的球坐标系(MSC)
参考词条
补充资料: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"

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