replica nfl jerseysreplica nfl jerseyssoccer jerseyreplica nfl jerseys forums.silverfrost.com :: View topic - Error 60, 699 & 399
forums.silverfrost.com Forum Index forums.silverfrost.com
Welcome to the Silverfrost forums
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Error 60, 699 & 399

 
Post new topic   Reply to topic    forums.silverfrost.com Forum Index -> Support
View previous topic :: View next topic  
Author Message
AsifArshid



Joined: 13 Mar 2013
Posts: 5

PostPosted: Wed Jun 19, 2013 5:12 am    Post subject: Error 60, 699 & 399 Reply with quote

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
View user's profile Send private message
PaulLaidler
Site Admin


Joined: 21 Feb 2005
Posts: 8210
Location: Salford, UK

PostPosted: Wed Jun 19, 2013 6:51 am    Post subject: Reply with quote

We need to see the lines of code where these errors occur.
Back to top
View user's profile Send private message AIM Address
AsifArshid



Joined: 13 Mar 2013
Posts: 5

PostPosted: Wed Jun 19, 2013 7:17 am    Post subject: Reply with quote

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
View user's profile Send private message
JohnCampbell



Joined: 16 Feb 2006
Posts: 2615
Location: Sydney

PostPosted: Wed Jun 19, 2013 8:25 am    Post subject: Reply with quote

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
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    forums.silverfrost.com Forum Index -> Support All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
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