 |
forums.silverfrost.com Welcome to the Silverfrost forums
|
View previous topic :: View next topic |
Author |
Message |
AsifArshid
Joined: 13 Mar 2013 Posts: 5
|
Posted: Wed Jun 19, 2013 5:12 am Post subject: Error 60, 699 & 399 |
|
|
Dear All,
I would like to hear the reason and solution of the following Errors, if anybody could help me in this regard.
Error 60 - This statement contains an illegal character - ' '
error 699 - Invalid character ' ' at start of line
error 399 - Unrecognised statement, did you forget to add /FIXED_FORMAT?
Thanks |
|
Back to top |
|
 |
PaulLaidler Site Admin
Joined: 21 Feb 2005 Posts: 8210 Location: Salford, UK
|
Posted: Wed Jun 19, 2013 6:51 am Post subject: |
|
|
We need to see the lines of code where these errors occur. |
|
Back to top |
|
 |
AsifArshid
Joined: 13 Mar 2013 Posts: 5
|
Posted: Wed Jun 19, 2013 7:17 am Post subject: |
|
|
The code is around 3,000 lines. I am sending the starting few lines.
Code structure is like this:
Module..........................end
Subroutiens...............return...end
Main program..................end
Error comes in the 1st Line.
Code: |
module var_dec
!implicit real*8 (a-h,o-z)
!CATAGORY 10: Variables for input and output files
character*30 :: cf55,cf56,cf57,cf58,cf59
!CONSTANT DECLARATION
parameter (PI=3.14159265358979323846d0, G=9.81)
parameter (NELI=2500, NELJ=15, KBA=300, KBB=300, KBC=300, KBD=10)
!VARIABLE DECLARATION
!CATAGORY 1: GENERAL
integer :: manaly,mcont,mrot,mom,nea,neb,mst,kkstart,kkend, &
!CATAGORY 2: DIMENSION AND MATERIAL OF SPECIMEN
real*8, dimension(3) :: dom_max,dom_min,cg_old,drift
!CATAGORY 3: PARTICLE's VARIABLES
real*8, dimension(NELI,3) :: c_cord,w,v,vw,du,dw,fxyz,fm,pin
!CATAGORY 4: BLOCK
integer, dimension(KBA,KBB,KBC,KBD) :: kb
.....
...
End Module
|
|
|
Back to top |
|
 |
JohnCampbell
Joined: 16 Feb 2006 Posts: 2615 Location: Sydney
|
Posted: Wed Jun 19, 2013 8:25 am Post subject: |
|
|
You might have some illegal characters in your file, which posting on the forum has cleaned out.
The following code has cleaned out some minor errors Code: | module var_dec
!implicit real*8 (a-h,o-z)
!$$ implicit none would be an aim, but not for 3,000 lines
!CATAGORY 10: Variables for input and output files
character*30 :: cf55,cf56,cf57,cf58,cf59
!CONSTANT DECLARATION
!$$ declare the type of variables
real*8 PI, G
integer*4 NELI, NELJ, KBA, KBB, KBC, KBD
parameter (PI=3.14159265358979323846d0, G=9.81)
parameter (NELI=2500, NELJ=15, KBA=300, KBB=300, KBC=300, KBD=10)
!VARIABLE DECLARATION
!CATAGORY 1: GENERAL
integer :: manaly,mcont,mrot,mom,nea,neb,mst,kkstart,kkend ! , &
!$$ there appears to be a line missing after the previous line
!CATAGORY 2: DIMENSION AND MATERIAL OF SPECIMEN
real*8, dimension(3) :: dom_max,dom_min,cg_old,drift
!CATAGORY 3: PARTICLE's VARIABLES
real*8, dimension(NELI,3) :: c_cord,w,v,vw,du,dw,fxyz,fm,pin
!CATAGORY 4: BLOCK
integer, dimension(KBA,KBB,KBC,KBD) :: kb
!.....
!...
End Module
|
|
|
Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|