3d-space frame code
11 次查看(过去 30 天)
显示 更早的评论
kindly please see attached file
6 个评论
Bebe G.
2019-9-30
Hi there,
I have solved similar to this problem by defining
/********
nodeCoordinates=[0 0 0;
0 0 1;
1 0 1;
1 0 0;
0 1 0;
0 1 1;
1 1 1;
1 1 0;
];
xx=nodeCoordinates(:,1);
yy=nodeCoordinates(:,2);
zz=nodeCoordinates(:,3);
elementNodes=[1 5;2 6;3 7; 4 8; 5 6; 6 7; 7 8; 8 5];
numberNodes=size(nodeCoordinates,1);
numberElements=size(elementNodes,1);
etc....
****/
applied a nodal force on one of the nodes and BC and calculated the displacement. Yet, I want to have this whole structure into a series attached to each other. How can I do that? And how can I be sure that the displacements, forces from the structure is transferred to the next element-structure?
Thanks,
Kate
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Statics and Dynamics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!