1!
2!     CalculiX - A 3-dimensional finite element program
3!              Copyright (C) 1998-2021 Guido Dhondt
4!
5!     This program is free software; you can redistribute it and/or
6!     modify it under the terms of the GNU General Public License as
7!     published by the Free Software Foundation(version 2);
8!
9!
10!     This program is distributed in the hope that it will be useful,
11!     but WITHOUT ANY WARRANTY; without even the implied warranty of
12!     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13!     GNU General Public License for more details.
14!
15!     You should have received a copy of the GNU General Public License
16!     along with this program; if not, write to the Free Software
17!     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18!
19      subroutine noanalysiss(inpc,textpart,nmethod,iperturb,istep,
20     &  istat,n,iline,ipol,inl,ipoinp,inp,ipoinpc,tper,ier)
21!
22!     reading the input deck: *NO ANALYSIS
23!
24      implicit none
25!
26      character*1 inpc(*)
27      character*132 textpart(16)
28!
29      integer nmethod,iperturb(*),istep,istat,n,key,iline,ipol,inl,
30     &  ipoinp(2,*),inp(3,*),ipoinpc(0:*),ier
31!
32      real*8 tper
33!
34      if(istep.lt.1) then
35         write(*,*)
36     &      '*ERROR reading *NO ANALYSIS: *NO ANALYSIS can only be used'
37         write(*,*) '  within a STEP'
38         ier=1
39         return
40      endif
41!
42      write(*,*) '*WARNING: no analysis option was chosen'
43!
44      nmethod=0
45      iperturb(1)=0
46      tper=1.d0
47!
48      call getnewline(inpc,textpart,istat,n,key,iline,ipol,inl,
49     &     ipoinp,inp,ipoinpc)
50!
51      return
52      end
53
54