op2_common

This is the pyNastran.op2_interface.op2_common.rst file.

op2_common Module

digraph inheritance59800d43dd { bgcolor=transparent; rankdir=LR; size=""; "pyNastran.f06.f06_writer.F06Writer" [fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled"]; "pyNastran.op2.op2_interface.op2_f06_common.OP2_F06_Common" -> "pyNastran.f06.f06_writer.F06Writer" [arrowsize=0.5,style="setlinewidth(0.5)"]; "pyNastran.op2.op2_interface.op2_codes.Op2Codes" [fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled"]; "pyNastran.op2.op2_interface.op2_common.OP2Common" [fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled"]; "pyNastran.op2.op2_interface.op2_codes.Op2Codes" -> "pyNastran.op2.op2_interface.op2_common.OP2Common" [arrowsize=0.5,style="setlinewidth(0.5)"]; "pyNastran.f06.f06_writer.F06Writer" -> "pyNastran.op2.op2_interface.op2_common.OP2Common" [arrowsize=0.5,style="setlinewidth(0.5)"]; "pyNastran.op2.op2_interface.op2_common.ResultCode" [fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",tooltip="ResultCode(subcase, analysis, sort, opt, ogs, superelement_adaptivity_index, pval_step)"]; "pyNastran.op2.op2_interface.op2_f06_common.OP2_F06_Common" [URL="pyNastran.op2.op2_interface.html#pyNastran.op2.op2_interface.op2_f06_common.OP2_F06_Common",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top"]; }
pyNastran.op2.op2_interface.op2_common.ResultCodeTuple

alias of ResultCode

pyNastran.op2.op2_interface.op2_common.parse_fba_subcase(title: str, subtitle: str, label: str, log: SimpleLogger) tuple[str, str][source]
pyNastran.op2.op2_interface.op2_common.parse_frf_subcase(title_bytes: bytes, subtitle_bytes: bytes, label_bytes: bytes, title: str, subtitle: str, label: str, log: SimpleLogger) tuple[str, str, str][source]
pyNastran.op2.op2_interface.op2_common.read_title_helper(title_bytes: bytes, subtitle_bytes: bytes, label_bytes: bytes, isubcase: int, encoding: str, log: SimpleLogger) tuple[str, str, str, str, str][source]

title_bytes = b’’ # 128 bytes subtitle_bytes = ‘ SUPERELEMENT 0 , 10 ‘ label_bytes = ‘LC01 SUBCASE 101’ title, subtitle, subtitle_original, label, label2 = read_title_helper(

title_bytes, subtitle_bytes, label_bytes)

title = ‘’ subtitle = ‘ SUPERELEMENT 0 , 10 ‘ subtitle_original = ‘SUPERELEMENT 0 , 10’ label = ‘LC10 SUBCASE 110’ label2 = ‘’