! ! CalculiX - A 3-dimensional finite element program ! Copyright (C) 1998-2007 Guido Dhondt ! ! This program is free software; you can redistribute it and/or ! modify it under the terms of the GNU General Public License as ! published by the Free Software Foundation(version 2); ! ! ! This program is distributed in the hope that it will be useful, ! but WITHOUT ANY WARRANTY; without even the implied warranty of ! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! GNU General Public License for more details. ! ! You should have received a copy of the GNU General Public License ! along with this program; if not, write to the Free Software ! Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ! subroutine expansions(inpc,textpart,alcon,nalcon, & alzero,nmat,ntmat_,irstrt,istep,istat,n,iline,ipol,inl,ipoinp, & inp,ipoinpc) ! ! reading the input deck: *EXPANSION ! implicit none ! character*1 inpc(*) character*132 textpart(16) ! integer nalcon(2,*),nmat,ntmat,ntmat_,istep,istat,n,ipoinpc(0:*), & i,ityp,key,irstrt,iline,ipol,inl,ipoinp(2,*),inp(3,*) ! real*8 alcon(0:6,ntmat_,*),alzero(*) ! ntmat=0 alzero(nmat)=0.d0 ! if((istep.gt.0).and.(irstrt.ge.0)) then write(*,*) '*ERROR in expansions: *ELASTIC should be placed' write(*,*) ' before all step definitions' stop endif ! if(nmat.eq.0) then write(*,*)'*ERROR IN expansions: *EXPANSION should be preceded' write(*,*) ' by a *MATERIAL card' stop endif ! ityp=1 ! do i=2,n if(textpart(i)(1:5).eq.'TYPE=') then if(textpart(i)(6:8).eq.'ISO') then ityp=1 elseif(textpart(i)(6:10).eq.'ORTHO') then ityp=3 elseif(textpart(i)(6:10).eq.'ANISO') then ityp=6 endif elseif(textpart(i)(1:5).eq.'ZERO=') then read(textpart(i)(6:25),'(f20.0)',iostat=istat) alzero(nmat) if(istat.gt.0) call inputerror(inpc,ipoinpc,iline) endif enddo ! nalcon(1,nmat)=ityp ! if(ityp.eq.1) then do call getnewline(inpc,textpart,istat,n,key,iline,ipol,inl, & ipoinp,inp,ipoinpc) if((istat.lt.0).or.(key.eq.1)) return ntmat=ntmat+1 nalcon(2,nmat)=ntmat if(ntmat.gt.ntmat_) then write(*,*) '*ERROR in expansions: increase ntmat_' stop endif do i=1,1 read(textpart(i)(1:20),'(f20.0)',iostat=istat) & alcon(i,ntmat,nmat) if(istat.gt.0) call inputerror(inpc,ipoinpc,iline) enddo read(textpart(2)(1:20),'(f20.0)',iostat=istat) & alcon(0,ntmat,nmat) if(istat.gt.0) call inputerror(inpc,ipoinpc,iline) enddo elseif(ityp.eq.3) then do call getnewline(inpc,textpart,istat,n,key,iline,ipol,inl, & ipoinp,inp,ipoinpc) if((istat.lt.0).or.(key.eq.1)) return ntmat=ntmat+1 nalcon(2,nmat)=ntmat if(ntmat.gt.ntmat_) then write(*,*) '*ERROR in expansions: increase ntmat_' stop endif do i=1,3 read(textpart(i)(1:20),'(f20.0)',iostat=istat) & alcon(i,ntmat,nmat) if(istat.gt.0) call inputerror(inpc,ipoinpc,iline) enddo read(textpart(4)(1:20),'(f20.0)',iostat=istat) & alcon(0,ntmat,nmat) if(istat.gt.0) call inputerror(inpc,ipoinpc,iline) enddo elseif(ityp.eq.6) then do call getnewline(inpc,textpart,istat,n,key,iline,ipol,inl, & ipoinp,inp,ipoinpc) if((istat.lt.0).or.(key.eq.1)) return ntmat=ntmat+1 nalcon(2,nmat)=ntmat if(ntmat.gt.ntmat_) then write(*,*) '*ERROR in expansions: increase ntmat_' stop endif do i=1,6 read(textpart(i)(1:20),'(f20.0)',iostat=istat) & alcon(i,ntmat,nmat) if(istat.gt.0) call inputerror(inpc,ipoinpc,iline) enddo read(textpart(7)(1:20),'(f20.0)',iostat=istat) & alcon(0,ntmat,nmat) if(istat.gt.0) call inputerror(inpc,ipoinpc,iline) enddo endif ! return end