I had the same problem, come to find out the following:
Strength ratios are not supported in Patran.
Extended Description Avoidance: With the following alter, the strength ratios (SRs) can be written to the op2 file and displayed in Patran. This is because the Nastran failure index datablock (OEFIT) has the same format as the SR datablock. However, with this alter, Patran will still think the values are failure indices, so titles in Patran will indicate failure indices while the values are SRs:
compile sedrcvr
$
$ ***This DMAP works with only param,post,-1
$
$ DMAP alter to replace Failure Index data block with
$ the Strength Ratio data block. The f06 will have both
$ Failure Index and Strength Ratio values printed as
$ usual; however, the op2 file has the Failure Index
$ data replaced with the Stregth Ratio data.
$
$ by Dean Bellinger, 7Jul2006
$
$ WARNING: Tested with only one test case using two elements,
$ and two subcases on version 2005.5.0 and 2005.0.0.
$
alter 'output2.*oes1c,oefit,oesrt' (1,-1) $
copy oesrt/oefitz/always/-1 $
type parm,,i,n,reclpoef $
reclpoef=1 $
do while ( reclpoef>=0 ) $
paraml oefitz/oefitzz/'tabrepi'/s,n,reclpoef/2//25 $
reclpoef = reclpoef + 2 $
paraml oefit//'dti'/s,n,reclpoef/2//s,n,junkit $
equivx oefitzz/oefitz/always $
enddo $ reclpoef
equivx oefitzz/oefit/always $
endalter
Anyone know how to alter a dmap file?