!*************************************************************************************!
! TITLE: CFVR1814 - NCSE 02: Seismic Analysis (Simplified spectrum) X-axis
! SUBTITLE: Seismic Analysis on a 1 DOF beam according to NCSE 02
!
! DESCRIPTION: This example compares spectrum accelerations given by CivilFEM to accelerations
! DESCRIPTION: obtained when solving on a 1 DOF beam and to the correct NCSE 02 spectum accelerations.
! DESCRIPTION:
! DESCRIPTION: The model is 1 element beam with only 1 DOF, which direction the CivilFEM spectrum
! DESCRIPTION: is set (the rest of the DOF are constrained). A different mass is applied at the
! DESCRIPTION: free end of the beam for the beam period to be equal to the 20 CivilFEM spectrum points.
! DESCRIPTION: After solving, the mass acceleration is obtained and compared to the CivilFEM spectrum
! DESCRIPTION: acceleration and to the correct value. Therefore, this example checks the following results:
! DESCRIPTION:
! DESCRIPTION: - CivilFEM spectrum is defined correctly by comparing to the correct value
! DESCRIPTION:
! DESCRIPTION: - CivilFEM spectrum is applied correctly and response acceleration is iqual to spectrum acceleration
!
! ELEMENT TYPE: BEAM4, MASS21
! MODULES:
! UNITS: User
! KEYWORD1: Seismic
! KEYWORD2: NCSE 02
!
!*************************************************************************************!

   FINISH
  ~CFCLEAR,,1
  NomFile='CFVR1814'
  /TITLE, %NomFile%, NCSE02: Seismic Analysis (Simplified spectrum) X-axis

! ----------------------------------------------------------------------
! Model definition
! ----------------------------------------------------------------------
! CivilFEM Setup: Code & Units
  ~UNITS,,LENG,CM
  ~UNITS,,TIME,S
  ~UNITS,,FORC,KP
  ~CODESEL,,,,,NCSE02
/PREP7
! Preprocessor
! ----------------------------------------------------------------------
! Materials: A-42
 ~CFMP,1,LIB,STEEL,EA,A42
! Modify density (Rho = 0)
 ~CFMP,1,USER
 ~CFMP,1,DatGen,RHO,,0
! Element Types
  ET,1,BEAM4   ! Type 1: 3D Beam
  ET,2,MASS21  ! Type 2: Mass
! Sections
 ~SSECLIB,1,1,1,1   !IPE 80
 ~BMSHPRO,1,BEAM,1,1,,,4,,0,,Steel

! Nodes
  L = 10              ! L    : Bar length
  N, 1
  N,10,L

! Elements
  TYPE,1
  MAT ,1
  REAL,1
  EN,1,1,10
  EPLOT

! Parameters
  *GET,AR20,EX,1                         ! Ex   : Elastic Modulus
  ~CFGET,AR22,SECTION,1,MECHPROP,A,,2    ! Area : Bar area
  ~CFGET,AR23,SECTION,1,MECHPROP,IZZ,,2  ! Izz  : Moment of inertia
  ~CFGET,AR24,SECTION,1,MECHPROP,IYY,,2  ! Iyy  : Moment of inertia

! Seismic spectrum definition
  ~DEFSPEC,ALL,0.13,I,DESIGN,1,1,4,4

  pi=3.141592654

! ----------------------------------------------------------------------
! DATA CHECK
! ----------------------------------------------------------------------
! Data comparision number
  NComp = 40
  NComp_ch = 0

! Marix dim.
  *DIM,LABEL,CHAR,Ncomp,1
  *DIM,LABEL_CH,CHAR,Ncomp_ch,1
  *DIM,VALUE,,Ncomp,3
  *DIM,VALUE_CH,CHAR,Ncomp_ch,3
  *DIM,TOLER,,Ncomp,2

*DO,ARG1,1,20
   /PREP7
   ~CFGET,AR26,SEISM,,SPEC,TH,,ARG1,1   ! Period
  ! Labels
   LABEL(ARG1,1) = 'Sa(%ARG1%)x'
   LABEL(20+ARG1,1) = 'Sa(%ARG1%)x'

   AR25=AR20*AR22/L
   AR27=AR25*(AR26/(2*pi))**2  ! Mass applied at end
   R,2,AR27
   TYPE,2
   MAT, 1
   REAL,2
   EN,2,10
   FINISH
   /SOLU

 ! Displacements
   D,1,,,,,,ALL
   D,10,,,,,,UY,UZ,ROTX,ROTY,ROTZ
   ~MODLSOL,1,
   ~CMBMOD,HORIZONT,NONE,NONE,0,0.0001
 ! Query results
   *GET,ARG5,NODE,10,U,X
 ! Correct values
   VALUE(20-ARG1+1,1)=ARG5*AR25/AR27 ! Aceleracion
 ! Obtained values
   ~CFGET,VALUE(20-ARG1+1,2),SEISM,,SPEC,SDH,,ARG1,2	 ! Y components of design horizontal spectrum
   ~CFGET,VALUE(40-ARG1+1,2),SEISM,,SPEC,SDH,,ARG1,2	 ! Y components of design horizontal spectrum
   ! CivilFEM gives the spectrum Normalized by gravity.
   ! To compare it must be changed to acceleration user units.
   VALUE(20-ARG1+1,2) = VALUE(20-ARG1+1,2)*981
   VALUE(40-ARG1+1,2) = VALUE(40-ARG1+1,2)*981
   /PREP7
   EDELE,2
*ENDDO

! Correct values
! ----------------------------------------------------------------------
   VALUE(40,1) = 7.146
   VALUE(39,1) = 14.29
   VALUE(38,1) = 21.44
   VALUE(37,1) = 28.58
   VALUE(36,1) = 35.73
   VALUE(35,1) = 42.88
   VALUE(34,1) = 50.02
   VALUE(33,1) = 57.17
   VALUE(32,1) = 64.31
   VALUE(31,1) = 71.46
   VALUE(30,1) = 71.46
   VALUE(29,1) = 74.77
   VALUE(28,1) = 78.08
   VALUE(27,1) = 81.39
   VALUE(26,1) = 84.70
   VALUE(25,1) = 88.02
   VALUE(24,1) = 91.33
   VALUE(23,1) = 94.64
   VALUE(22,1) = 97.95
   VALUE(21,1) = 101.3


! Warning and error tolerances
! ----------------------------------------------------------------------
   *DO,II,1,40
     TOLER(II, 1)= 1.0 $ TOLER(II, 2)= 1.0
   *ENDDO

! ----------------------------------------------------------------------
! Results Comparison
! ----------------------------------------------------------------------
  COMPARA.MAC
