BEmap()

Fetch result of mapping onto boundary element

This function fetches the result of a BE_MAP command for the current boundary element. Example 1 : Map hydrostatic and dynamic pressure to the boundary and save both pressures as well as the total pressure for each BE
SAVE_BE_ITEM = ( %SAVE_scalar%, [ BEmap($BEmap_phyd$) ], "BE_BEmap_phyd" ) SAVE_BE_ITEM = ( %SAVE_scalar%, [ BEmap($BEmap_pdyn$) ], "BE_BEmap_pdyn" ) SAVE_BE_ITEM = ( %SAVE_scalar%, [ BEmap($BEmap_phyd$) + BEmap($BEmap_pdyn$) ], "BE_BEmap_ptot" ) BE_MAP($BEmap_phyd$) = ( [ Y%ind_p% ] ) BE_MAP($BEmap_pdyn$) = ( [ Y%ind_p_dyn% ] )
Example 2 : Directly map the total pressure to the boundary and save total pressure for each BE
SAVE_BE_ITEM = ( %SAVE_scalar%, [ BEmap($BEmap_ptot$) ], "BE_BEmap_ptot" ) BE_MAP($BEmap_ptot$) = ( [ Y%ind_p% + Y%ind_p_dyn% ] )
Note: The function BEmap() should currently only be used in conjunction with SAVE_BE_ITEM