OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
assem_p.F File Reference
#include "implicit_f.inc"
#include "mvsiz_p.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine assem_p (nixpl, nd, ixp, nel, iddl, ndof, k_diag, k_lt, iadk, jdik, kc11, kc12, kc22, off)

Function/Subroutine Documentation

◆ assem_p()

subroutine assem_p ( integer nixpl,
integer nd,
integer, dimension(nixpl,*) ixp,
integer nel,
integer, dimension(*) iddl,
integer, dimension(*) ndof,
k_diag,
k_lt,
integer, dimension(*) iadk,
integer, dimension(*) jdik,
kc11,
kc12,
kc22,
off )

Definition at line 36 of file assem_p.F.

40C----6---------------------------------------------------------------7---------8
41C I m p l i c i t T y p e s
42C-----------------------------------------------
43#include "implicit_f.inc"
44C-----------------------------------------------
45C G l o b a l P a r a m e t e r s
46C-----------------------------------------------
47#include "mvsiz_p.inc"
48C-----------------------------------------------
49C C o m m o n B l o c k s
50C-----------------------------------------------
51C-----------------------------------------------------------------
52C D u m m y A r g u m e n t s
53C-----------------------------------------------
54 INTEGER NIXPL,ND
55 INTEGER
56 . IXP(NIXPL,*), NEL ,IDDL(*) ,NDOF(*) ,
57 . IADK(*) ,JDIK(*)
58C REAL
60 . k_diag(*) ,k_lt(*) ,
61 . kc11(nd,nd,*),kc12(nd,nd,*),kc22(nd,nd,*),off(*)
62C-----------------------------------------------
63C L o c a l V a r i a b l e s
64C-----------------------------------------------
65 INTEGER K,EP,N1(MVSIZ),N2(MVSIZ)
66C
67 DO ep = 1,nel
68 n1(ep)=ixp(2,ep)
69 n2(ep)=ixp(3,ep)
70 ENDDO
71C-------block diagonal k11,k22...k33-----
72 CALL assem_kii(n1,nel,iddl,iadk,k_diag,k_lt ,kc11,nd,off)
73 CALL assem_kii(n2,nel,iddl,iadk,k_diag,k_lt ,kc22,nd,off)
74C-------non diag kij-----
75 CALL assem_kij(n1,n2,nel,iddl,iadk,jdik,k_diag,k_lt,kc12,nd,off)
76C----6---------------------------------------------------------------7---------8
77 RETURN
#define my_real
Definition cppsort.cpp:32
subroutine assem_kii(ni, nel, iddl, iadk, k_diag, k_lt, kii, nd, off)
Definition imp_glob_k.F:962
subroutine assem_kij(ni, nj, nel, iddl, iadk, jdik, k_diag, k_lt, kij, nd, off)