


PENALTYCREATEPVECTOR - creates en empty vector
penalty loads are expressed as penalty stiffnesses input in the global
stiffness matrix. Therefore, penalty load is not a right hand side therm -> return empty vector.
Usage:
Pe=PenaltyCreatePVector(icefront,grids,materials,inputs,analysis_type,kmax)
See also CREATEPVECTOR, PENALTYCREATEKMATRIX, PENALTYCONTRAIN

0001 function pe=PenaltyCreatePVector(penpair,grids,materials,inputs,analysis_type,kmax); 0002 %PENALTYCREATEPVECTOR - creates en empty vector 0003 % 0004 % penalty loads are expressed as penalty stiffnesses input in the global 0005 % stiffness matrix. Therefore, penalty load is not a right hand side therm -> return empty vector. 0006 % 0007 % Usage: 0008 % Pe=PenaltyCreatePVector(icefront,grids,materials,inputs,analysis_type,kmax) 0009 % 0010 % See also CREATEPVECTOR, PENALTYCREATEKMATRIX, PENALTYCONTRAIN 0011 0012 pe=elemvector(0); 0013 0014 end