[ Home | SDTools |
SDT |
Sales ] [ Support | Services | Publications] |
Exporting to UFF (Universal File Format)
load gartid iiplot XF(1).x='frequency'; % modify data set properties XF(1).yn='accele'; iicom('sub'); % reinitialize plot to check ufwrite('test.uf',XF,1); XF(7)={'node',FEnode,'elt',FEelt}; ufwrite('test.uf',XF,7); UFS=ufread(FileName); % reread the UFF to check resultUnder SDT 3.1, you can fill defaults for XFopt and XFdof by displaying a dataset using iiplot. You can then write a universal file using
ufwrite('test.uf',58,IIxf,IIw,XFopt,XFdof); ufwrite('test.uf',15,FEnode); ufwrite('test.uf',82,FEelt);where FEelt can be a wire-frame line or a beam model.