Source code for pyNastran.op2.tables.opg_appliedLoads.opg_load_vector

import numpy as np
from pyNastran.op2.result_objects.table_object import RealTableArray, ComplexTableArray
from pyNastran.op2.result_objects.scalar6_table_object import RealScalarTableArray


[docs] class RealLoadVectorArray(RealTableArray): # table_code=2, sort_code=0, thermal=0 def __init__(self, data_code, is_sort1, isubcase, dt): RealTableArray.__init__(self, data_code, is_sort1, isubcase, dt)
[docs] def write_f06(self, f06_file, header=None, page_stamp='PAGE %s', page_num: int=1, is_mag_phase: bool=False, is_sort1: bool=True): if header is None: header = [] words = [' L O A D V E C T O R\n', ] #words += self.get_table_marker() write_words = True if self.nonlinear_factor not in (None, np.nan): return self._write_f06_transient_block( words, header, page_stamp, page_num, f06_file, write_words, is_mag_phase=is_mag_phase, is_sort1=is_sort1) return self._write_f06_block( words, header, page_stamp, page_num, f06_file, write_words, is_mag_phase=False, is_sort1=True )
[docs] class ComplexLoadVectorArray(ComplexTableArray): def __init__(self, data_code, is_sort1, isubcase, dt): ComplexTableArray.__init__(self, data_code, is_sort1, isubcase, dt)
[docs] def write_f06(self, f06_file, header=None, page_stamp='PAGE %s', page_num: int=1, is_mag_phase: bool=False, is_sort1: bool=True): if header is None: header = [] words = [' C O M P L E X L O A D V E C T O R\n', ] return self._write_f06_transient_block( words, header, page_stamp, page_num, f06_file, is_mag_phase, is_sort1)
[docs] class RealTemperatureVectorArray(RealScalarTableArray): def __init__(self, data_code, is_sort1, isubcase, dt): RealScalarTableArray.__init__(self, data_code, is_sort1, isubcase, dt)
[docs] def write_f06(self, f06_file, header=None, page_stamp='PAGE %s', page_num: int=1, is_mag_phase: bool=False, is_sort1: bool=True): if header is None: header = [] words = [ ' T E M P E R A T U R E V E C T O R\n', ' \n', ' POINT ID. TYPE ID VALUE ID+1 VALUE ID+2 VALUE ID+3 VALUE ID+4 VALUE ID+5 VALUE\n' ] #words += self.get_table_marker() write_words = False if self.nonlinear_factor not in (None, np.nan): return self._write_f06_transient_block( words, header, page_stamp, page_num, f06_file, write_words, is_mag_phase=is_mag_phase, is_sort1=is_sort1) return self._write_f06_block(words, header, page_stamp, page_num, f06_file, write_words, is_mag_phase=is_mag_phase, is_sort1=is_sort1)
[docs] class RealThermalVelocityVectorArray(RealScalarTableArray): def __init__(self, data_code, is_sort1, isubcase, dt): RealScalarTableArray.__init__(self, data_code, is_sort1, isubcase, dt)
[docs] def write_f06(self, f06_file, header=None, page_stamp='PAGE %s', page_num: int=1, is_mag_phase: bool=False, is_sort1: bool=True): if header is None: header = [] words = [ ' THERMAL VELOCITY V E C T O R\n', ' \n', ' POINT ID. TYPE ID VALUE ID+1 VALUE ID+2 VALUE ID+3 VALUE ID+4 VALUE ID+5 VALUE\n' ] #words += self.get_table_marker() write_words = False if self.nonlinear_factor not in (None, np.nan): return self._write_f06_transient_block( words, header, page_stamp, page_num, f06_file, write_words, is_mag_phase=is_mag_phase, is_sort1=is_sort1) return self._write_f06_block( words, header, page_stamp, page_num, f06_file, write_words, is_mag_phase=is_mag_phase, is_sort1=is_sort1)