说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 骨髓MSC
1)  bone marrow MSCs
骨髓MSC
1.
Here, we examined the isolation, expansion, committed induction of human bone marrow and umbilical cord blood MSCs in vitro, and also investigated the migration and differentiation of human bone marrow MSCs in.
骨髓MSC是一类存在于骨髓中的具有多向分化潜能的干细胞,体外不仅可以分化为间充质类细胞,而且可以分化为非间充质类细胞。
2)  marrow stromai stem cells (MSC)
骨髓基质细胞MSC
3)  bone marrow mesenchymal stem cells (MSCs)
骨髓基质干细胞(MSC)
4)  Marrow [英]['mærəʊ]  [美]['mæro]
骨髓
1.
Biological characteristics of marrow mesenchymal stem cells of mice of different ages cultured in vitro with adherent method;
贴壁法培养不同龄小鼠骨髓间充质干细胞的生物学特点
2.
Experimental Study on Osteogenesis of Composite of Conentrated Autologus Bone Marrow Mesenchymal Stem Cells;
浓集自体骨髓基质干细胞复合物成骨的实验研究
3.
Elevation of Concentration of Autologous Bone Marrow Mesenchymal Stem Cells Induced by Experimental exsanguination;
放血增加自体骨髓基质干细胞浓度实验研究
5)  bone marrow
骨髓
1.
Isolation of CD34~+ cells from bone marrow derived mononuclear cells with immunomagnetic bead method;
免疫磁珠法分离骨髓CD34~+细胞的方法研究
2.
Corneal posterior lamellar reconstruction with feline bone marrow derived endothelial progenitor cells and cornea acellular matrix;
以猪角膜脱细胞基质为载体培养猫骨髓内皮祖细胞构建角膜后板层的实验研究
3.
Immortalized rabbit bone marrow mesenchymal stem cells as an in vitro model for adipogenesis;
永生型兔骨髓间充质干细胞定向诱导分化为脂肪细胞的实验研究(英文)
6)  myel-;myelo-
骨髓,脊髓
补充资料: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"

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