|
小弟新手,在编译Fortran 文件时候遇到以下问题,请求高手解决,如何编译?
==============================================================================
Generating Makefile... Okay
==============================================================================
Compiling .\param_module.F90
.\param_module.F90:7.19:
module Param_module
1
Error: Unexpected MODULE statement at (1)
.\param_module.F90:8.15:
implicit none
1
Error: Unexpected IMPLICIT NONE statement at (1)
.\param_module.F90:9.17:
type Param_type
1
Error: Unexpected derived type declaration statement at (1)
.\param_module.F90:33.21:
logical continue
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:34.113:
character(len=30) :: method ! 'md' Nose-Poincare, 'vs' velocity-scaling, 'lf' leapfrog, 'hl' hysteresis loop
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:35.32:
real*8 GPa(3) ! [GPa]
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:36.30:
real*8 kelvin ! [K]
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:37.33:
real*8 target_kinetic_energy
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:38.50:
real*8 mass_dipo(1:3) ! [eV Angstrom^-2 ps^2]
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:39.50:
real*8 mass_acou(1:3) ! [eV Angstrom^-2 ps^2]
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:40.36:
real*8 Q_Nose ! [eV ps^2]
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:42.37:
character(len=4) :: bulk_or_film
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:43.33:
integer Lx, Ly, Lz ! Integer
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:44.33:
integer gap_id ! 0, 1, 2
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:45.22:
integer padding_y
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:46.28:
real*8 gap_dipole_u(3)
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:47.53:
real*8 a0 ! lattice constant [Angstrom]
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:48.22:
real*8 epi_strain
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:50.63:
real*8 dt ! Time step width delta t [pico second]
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:51.25:
integer n_thermalize
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:52.22:
integer n_average
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:53.28:
integer n_E_wave_period
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:54.70:
integer n_coord_freq ! frequency for writing out the coordinates
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:55.62:
integer n_hl_freq ! frequency for writing to .hl file
1
Error: Unexpected data declaration statement at (1)
.\param_module.F90:56.39:
integer n_hysteresis_loop_continue
1
Error: Unexpected data declaration statement at (1)
Fatal Error: Error count reached limit of 25.
Error(E42): Last command making (build\param_module.o) returned a bad status
Error(E02): Make execution terminated
* Failed *
|
|