! ! 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 nodalthicknesses(inpc,textpart,set,istartset,iendset, & ialset,nset,thickn,nk,istep,istat,n,iline,ipol,inl,ipoinp, & inp,iaxial,ipoinpc) ! ! reading the input deck: *NODAL THICKNESS ! implicit none ! character*1 inpc(*) character*81 set(*),noset character*132 textpart(16) ! integer istartset(*),iendset(*),ialset(*),nset,nk,istep,istat,n, & key,i,j,k,l,ipos,iline,ipol,inl,ipoinp(2,*),inp(3,*),iaxial, & ipoinpc(0:*) ! real*8 thickn(2,*),thickness1,thickness2 ! if(istep.gt.0) then write(*,*) '*ERROR in nodalthicknesses: *NODAL THICKNESS' write(*,*) ' should be placed before all step definitions' stop endif ! do call getnewline(inpc,textpart,istat,n,key,iline,ipol,inl, & ipoinp,inp,ipoinpc) if((istat.lt.0).or.(key.eq.1)) return read(textpart(2)(1:20),'(f20.0)',iostat=istat) thickness1 if(istat.gt.0) call inputerror(inpc,ipoinpc,iline) if(iaxial.ne.0) thickness1=thickness1/iaxial if(n.eq.2) then thickness2=0.d0 else read(textpart(2)(1:20),'(f20.0)',iostat=istat) thickness2 if(istat.gt.0) call inputerror(inpc,ipoinpc,iline) endif read(textpart(1)(1:10),'(i10)',iostat=istat) l if(istat.eq.0) then thickn(1,l)=thickness1 thickn(2,l)=thickness2 else read(textpart(1)(1:80),'(a80)',iostat=istat) noset noset(81:81)=' ' ipos=index(noset,' ') noset(ipos:ipos)='N' do i=1,nset if(set(i).eq.noset) exit enddo if(i.gt.nset) then noset(ipos:ipos)=' ' write(*,*) '*ERROR in nodalthicknesses: node set ',noset write(*,*) ' has not yet been defined. ' call inputerror(inpc,ipoinpc,iline) stop endif do j=istartset(i),iendset(i) if(ialset(j).gt.0) then thickn(1,ialset(j))=thickness1 thickn(2,ialset(j))=thickness2 else k=ialset(j-2) do k=k-ialset(j) if(k.ge.ialset(j-1)) exit thickn(1,k)=thickness1 thickn(2,k)=thickness2 enddo endif enddo endif enddo ! return end