<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Pretty Basic Stuff in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890486#M78095</link>
    <description>&lt;DIV style="margin:0px;"&gt;
&lt;PRE&gt;[plain]       program adce
C *********************                                                 ADC00010
C                                                                       ADC00020
C     PROGRAM TO COMPUTE ADIABATIC COMPRESSION EFFICIENCY AND/OR        ADC00030
C     COMPRESSION RATIO TO BE EQUAL RATIOS PER STAGE WITH               ADC00040
C     VARIOUS PRESSURE DROPS PER INTERSTAGE                             ADC00050
C                                                                       ADC00060
C     AD EFF COMPUTATION REQUIRES:                                      ADC00070
C              GAS SPECIFIC GRAVITY, SG, OR MOLECULAR WEIGHT, MW        ADC00080
C              COMPRESSION RATIO, RATIO                                 ADC00090
C              SUCTION AND DISCHARGE COMPRESSIBILITY FACTORS, ZS AND ZD ADC00100
C              GAS HEAT CAPACITY RATIO, K                               ADC00110
C                                                                       ADC00120
C     FOR THE COMPRESSION RATIO COMPUTATION                             ADC00130
C                                                                       ADC00140
C              SUCTION PRESSURE, PS                                     ADC00150
C              DISCHARGE PRESSURE, PD                                   ADC00160
C              PRESSURE DROP PER INTERSTAGE, DELP (ARRAY)               ADC00170
C              NUMBER OF COMPRESSION STAGES, STAGES                     ADC00180
C                                                                       ADC00190
C     OPTIONAL:                                                         ADC00200
C              VALVE FLOW RESISTANCE FACTOR, F (VELADS), DEFAULT 4.0    ADC00210
C                 3.0  SINGLE DECK MULTIPLE POPPET VALVE                ADC00220
C                 4.0  SINGLE DECK MODERN PLATE VALVE                   ADC00230
C                 5.0  DOUBLE DECK MODERN PLATE VALVE                   ADC00240
C                 7.0  OLD (1920 - 1930) STYLE PLATE VALVE              ADC00250
C                                                                       ADC00260
C              VALVE AIR SPEED, A, DEFAULT 7000.0                       ADC00270
C                                                                       ADC00280
C              ELEVATION, ELEV, DEFAULT ZERO, PS AND PD IN PSIA         ADC00290
C                                                                       ADC00300
C              ATMOSPHERIC PRESSURE, ATM, DEFAULT ZERO,                 ADC00310
C                PS AND PD IN PSIA                                      ADC00320
C                                                                       ADC00330
C**********************                                                 ADC00340
C                                                                       ADC00350
      INTEGER STAGES                                                    ADC00360
      REAL MU,K(5),MW(5)                                                ADC00370
      CHARACTER *3 ANS,YES,Y,NO                                         ADC00380
      COMMON/ALPHA/ZS(5),ZD(5),SG(5),MW,K,RATIO(5),PS,PD,DELP(4),       ADC00390
     *  F(5),A(5),ELEV,ATM,STAGES                                       ADC00400
      COMMON/BETA/KOMRAT,KOMACE                                         ADC00410
C                                                                       ADC00420
      DATA YES/'YES'/,  Y/'Y'/, NO/'N'/                                 ADC00430
      DIMENSION AE(5)                                                   ADC00440
C                                                                       ADC00450
C  PRINT OUT THE INFO ON HOW TO USE THIS PROGRAM                        ADC00460
C                                                                       ADC00470
      CALL HDNG                                                         ADC00480
C                                                                       ADC00490
C  ZERO ALL INPUT INFORMATION                                           ADC00500
C                                                                       ADC00510
      CALL ZERO                                                         ADC00520
C                                                                       ADC00530
C  GET THE USER INPUT                                                   ADC00540
C                                                                       ADC00550
      CALL INPUT                                                        ADC00560
C                                                                       ADC00570
C  SET SOME DEFAULTS IF NOT INPUT                                       ADC00580
C                                                                       ADC00590
      CALL DFAULT                                                       ADC00600
C                                                                       ADC00610
C  BEGIN THE COMPUTATIONS  -  FIRST, IF WE NEED A COMPRESSION RATIO     ADC00620
C  COMPUTATION DO IT                                                    ADC00630
[/plain]&lt;/PRE&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/436589"&gt;boyd.georgebp.com&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;</description>
    <pubDate>Thu, 20 Aug 2009 22:44:28 GMT</pubDate>
    <dc:creator>boyd_georgebp_com</dc:creator>
    <dc:date>2009-08-20T22:44:28Z</dc:date>
    <item>
      <title>Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890477#M78086</link>
      <description>Embarassingly simple probably. "Old" code, compiled and executed in vs on ibm mainframe now moving to windows. i get error statements on a simple type delcaration statement "INTEGER VarName", error statement being syntax error expecting end of statement. can anyone identify with that? i've tried several differnt ways of saying the same thing, like implicit statements and the like. still no dice.</description>
      <pubDate>Wed, 19 Aug 2009 18:46:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890477#M78086</guid>
      <dc:creator>boyd_georgebp_com</dc:creator>
      <dc:date>2009-08-19T18:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890478#M78087</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;An actual example source file would help. A common problem is free-form source in a file with a file type of .f or .for implying fixed-form source. Can you show us a sample line (mind the spacing) and the actual error message? &lt;BR /&gt;</description>
      <pubDate>Wed, 19 Aug 2009 19:06:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890478#M78087</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-08-19T19:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890479#M78088</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/436589"&gt;boyd.georgebp.com&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;Embarassingly simple probably. "Old" code, compiled and executed in vs on ibm mainframe now moving to windows. i get error statements on a simple type delcaration statement "INTEGER VarName", error statement being syntax error expecting end of statement. can anyone identify with that? i've tried several differnt ways of saying the same thing, like implicit statements and the like. still no dice.&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;copied from code, a .for file&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Aug 2009 19:39:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890479#M78088</guid>
      <dc:creator>boyd_georgebp_com</dc:creator>
      <dc:date>2009-08-19T19:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890480#M78089</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/436589"&gt;boyd.georgebp.com&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;Embarassingly simple probably. "Old" code, compiled and executed in vs on ibm mainframe now moving to windows. i get error statements on a simple type delcaration statement "INTEGER VarName", error statement being syntax error expecting end of statement. can anyone identify with that? i've tried several differnt ways of saying the same thing, like implicit statements and the like. still no dice.&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;column&lt;BR /&gt;123456789012345657890&lt;BR /&gt;&lt;BR /&gt; integer stages adce00xxx&lt;BR /&gt; real mu, k(5)acde00xxx&lt;BR /&gt;&lt;BR /&gt;extracts fro code with identifiers in the right field&lt;BR /&gt;&lt;BR /&gt;error:&lt;BR /&gt;&lt;BR /&gt;Error 1 error #5082: Syntax error, found '::' when expecting one of: &lt;IDENTIFIER&gt; C:Documents and Settingsgeorb1My DocumentsVisual Studio 2005ProjectsADCEADCEADCE.f90 51 &lt;BR /&gt;&lt;BR /&gt;i'm new to this so there is likely a much better way to show code. &lt;BR /&gt;&lt;BR /&gt;i could attach file and send to see if you compile same??would that work??&lt;/IDENTIFIER&gt;</description>
      <pubDate>Wed, 19 Aug 2009 19:44:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890480#M78089</guid>
      <dc:creator>boyd_georgebp_com</dc:creator>
      <dc:date>2009-08-19T19:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890481#M78090</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
You can attach a file - see the link in my signature below for instructions. I note that there is text in the sequence number field. Make sure that this starts in column 73 and that there are no tabs in the source lines.&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Aug 2009 20:16:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890481#M78090</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-08-19T20:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890482#M78091</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336209"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;You can attach a file - see the link in my signature below for instructions. I note that there is text in the sequence number field. Make sure that this starts in column 73 and that there are no tabs in the source lines.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;let me make sure about the tabs and fields and such. i'm not too sure about where your signature is and how to send the file to you. you'd only need a few lines as i'm getting much the same error throughout, so if i can fix one, i can fix all. the two lines i sent to you were entered by hand so i am sure they're spaced incorrectly. the destructions say not to include emails. is there some way to do that that's considered "safe"/&lt;BR /&gt;&lt;BR /&gt;only spaces and the statement identifiers do begin in column 73. i assume that it's ok as far as that goes.</description>
      <pubDate>Wed, 19 Aug 2009 22:01:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890482#M78091</guid>
      <dc:creator>boyd_georgebp_com</dc:creator>
      <dc:date>2009-08-19T22:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890483#M78092</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336209"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;You can attach a file - see the link in my signature below for instructions. I note that there is text in the sequence number field. Make sure that this starts in column 73 and that there are no tabs in the source lines.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;i believe i've sent the code to you &lt;BR /&gt;&lt;BR /&gt;there's nothing proprietary in it that i know of.&lt;BR /&gt;&lt;BR /&gt;Likely past your work day, so i'll return tomorrow. perhaps we cna find the problem tomorrow.</description>
      <pubDate>Wed, 19 Aug 2009 23:03:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890483#M78092</guid>
      <dc:creator>boyd_georgebp_com</dc:creator>
      <dc:date>2009-08-19T23:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890484#M78093</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Sorry, I did not receive your code and am not sure how you sent it.&lt;BR /&gt;&lt;BR /&gt;To attach a file, follow the instructions &lt;A href="http://software.intel.com/en-us/forums/showannouncement.php?a=78"&gt;here&lt;/A&gt;.&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Aug 2009 12:16:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890484#M78093</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-08-20T12:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890485#M78094</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336209"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;Sorry, I did not receive your code and am not sure how you sent it.&lt;BR /&gt;&lt;BR /&gt;To attach a file, follow the instructions &lt;A href="http://software.intel.com/en-us/forums/showannouncement.php?a=78"&gt;here&lt;/A&gt;.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Aug 2009 22:41:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890485#M78094</guid>
      <dc:creator>boyd_georgebp_com</dc:creator>
      <dc:date>2009-08-20T22:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890486#M78095</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;PRE&gt;[plain]       program adce
C *********************                                                 ADC00010
C                                                                       ADC00020
C     PROGRAM TO COMPUTE ADIABATIC COMPRESSION EFFICIENCY AND/OR        ADC00030
C     COMPRESSION RATIO TO BE EQUAL RATIOS PER STAGE WITH               ADC00040
C     VARIOUS PRESSURE DROPS PER INTERSTAGE                             ADC00050
C                                                                       ADC00060
C     AD EFF COMPUTATION REQUIRES:                                      ADC00070
C              GAS SPECIFIC GRAVITY, SG, OR MOLECULAR WEIGHT, MW        ADC00080
C              COMPRESSION RATIO, RATIO                                 ADC00090
C              SUCTION AND DISCHARGE COMPRESSIBILITY FACTORS, ZS AND ZD ADC00100
C              GAS HEAT CAPACITY RATIO, K                               ADC00110
C                                                                       ADC00120
C     FOR THE COMPRESSION RATIO COMPUTATION                             ADC00130
C                                                                       ADC00140
C              SUCTION PRESSURE, PS                                     ADC00150
C              DISCHARGE PRESSURE, PD                                   ADC00160
C              PRESSURE DROP PER INTERSTAGE, DELP (ARRAY)               ADC00170
C              NUMBER OF COMPRESSION STAGES, STAGES                     ADC00180
C                                                                       ADC00190
C     OPTIONAL:                                                         ADC00200
C              VALVE FLOW RESISTANCE FACTOR, F (VELADS), DEFAULT 4.0    ADC00210
C                 3.0  SINGLE DECK MULTIPLE POPPET VALVE                ADC00220
C                 4.0  SINGLE DECK MODERN PLATE VALVE                   ADC00230
C                 5.0  DOUBLE DECK MODERN PLATE VALVE                   ADC00240
C                 7.0  OLD (1920 - 1930) STYLE PLATE VALVE              ADC00250
C                                                                       ADC00260
C              VALVE AIR SPEED, A, DEFAULT 7000.0                       ADC00270
C                                                                       ADC00280
C              ELEVATION, ELEV, DEFAULT ZERO, PS AND PD IN PSIA         ADC00290
C                                                                       ADC00300
C              ATMOSPHERIC PRESSURE, ATM, DEFAULT ZERO,                 ADC00310
C                PS AND PD IN PSIA                                      ADC00320
C                                                                       ADC00330
C**********************                                                 ADC00340
C                                                                       ADC00350
      INTEGER STAGES                                                    ADC00360
      REAL MU,K(5),MW(5)                                                ADC00370
      CHARACTER *3 ANS,YES,Y,NO                                         ADC00380
      COMMON/ALPHA/ZS(5),ZD(5),SG(5),MW,K,RATIO(5),PS,PD,DELP(4),       ADC00390
     *  F(5),A(5),ELEV,ATM,STAGES                                       ADC00400
      COMMON/BETA/KOMRAT,KOMACE                                         ADC00410
C                                                                       ADC00420
      DATA YES/'YES'/,  Y/'Y'/, NO/'N'/                                 ADC00430
      DIMENSION AE(5)                                                   ADC00440
C                                                                       ADC00450
C  PRINT OUT THE INFO ON HOW TO USE THIS PROGRAM                        ADC00460
C                                                                       ADC00470
      CALL HDNG                                                         ADC00480
C                                                                       ADC00490
C  ZERO ALL INPUT INFORMATION                                           ADC00500
C                                                                       ADC00510
      CALL ZERO                                                         ADC00520
C                                                                       ADC00530
C  GET THE USER INPUT                                                   ADC00540
C                                                                       ADC00550
      CALL INPUT                                                        ADC00560
C                                                                       ADC00570
C  SET SOME DEFAULTS IF NOT INPUT                                       ADC00580
C                                                                       ADC00590
      CALL DFAULT                                                       ADC00600
C                                                                       ADC00610
C  BEGIN THE COMPUTATIONS  -  FIRST, IF WE NEED A COMPRESSION RATIO     ADC00620
C  COMPUTATION DO IT                                                    ADC00630
[/plain]&lt;/PRE&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/436589"&gt;boyd.georgebp.com&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Aug 2009 22:44:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890486#M78095</guid>
      <dc:creator>boyd_georgebp_com</dc:creator>
      <dc:date>2009-08-20T22:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890487#M78096</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
I didn't get any errors compiling the code you posted, but as you didn't attach the actual file, it's possible something got lost in the translation. Please follow the instructions in the link below my name for attaching the actual file. Or, you can email it to me at steve.lionel at intel.com . Please also include the command line you are using to compile. If you are using Visual Studio, send the buildlog.htm from the Debug or Release folder.&lt;BR /&gt;</description>
      <pubDate>Fri, 21 Aug 2009 00:06:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890487#M78096</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-08-21T00:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890488#M78097</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/436589"&gt;boyd.georgebp.com&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;column&lt;BR /&gt;123456789012345657890&lt;BR /&gt;&lt;BR /&gt; integer stages adce00xxx&lt;BR /&gt; real mu, k(5)acde00xxx&lt;BR /&gt;&lt;BR /&gt;extracts fro code with identifiers in the right field&lt;BR /&gt;&lt;BR /&gt;error:&lt;BR /&gt;&lt;BR /&gt;Error 1 error #5082: Syntax error, found '::' when expecting one of: &lt;IDENTIFIER&gt; C:Documents and Settingsgeorb1My DocumentsVisual Studio 2005ProjectsADCEADCEADCE.f90 51 &lt;BR /&gt;&lt;BR /&gt;i'm new to this so there is likely a much better way to show code. &lt;BR /&gt;&lt;BR /&gt;i could attach file and send to see if you compile same??would that work??&lt;/IDENTIFIER&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
Boyd,&lt;BR /&gt;&lt;BR /&gt;You are using fixed format code and your filename is .f90, so the compile expects free-format, Fortran 90 syntax. Change your filename to .for, so that the compiler expects fixed format code.&lt;BR /&gt;&lt;BR /&gt;David&lt;BR /&gt;</description>
      <pubDate>Fri, 21 Aug 2009 00:10:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890488#M78097</guid>
      <dc:creator>DavidWhite</dc:creator>
      <dc:date>2009-08-21T00:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890489#M78098</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Check for tab characters in your file. Fixed format files do not like tabs. Apparently this file was edited ("program adce"), so it is likely you used a "modern" editor on this file. Some editors will do you a "favor" and replace multiple spaces with tab.&lt;BR /&gt;&lt;BR /&gt;If that doesn't show up anything then insert conditional compile statements in Fortran or use the conditional compile in FPP. Essentially you fence off sections of code and see if it compiles, then move the fence&lt;BR /&gt;&lt;BR /&gt;Using FPP&lt;BR /&gt;&lt;BR /&gt;program adce&lt;BR /&gt;#if 0&lt;BR /&gt;...&lt;BR /&gt;#endif&lt;BR /&gt;end program&lt;BR /&gt;&lt;BR /&gt;If that compiles, then start moving the #if lower and/or #endif higher&lt;BR /&gt;&lt;BR /&gt;At some point you might get tag not found (e.g. GOTO 100 cannot find 100 CONTINUE)&lt;BR /&gt;&lt;BR /&gt;program adce&lt;BR /&gt;...&lt;BR /&gt;GOTO 100&lt;BR /&gt;#if 0&lt;BR /&gt;...&lt;BR /&gt;#endif&lt;BR /&gt;100 CONTINUE&lt;BR /&gt;#if 0&lt;BR /&gt;...&lt;BR /&gt;#endif&lt;BR /&gt;end program&lt;BR /&gt;&lt;BR /&gt;Jim&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 21 Aug 2009 00:11:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890489#M78098</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2009-08-21T00:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890490#M78099</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Ah, David noticed what I didn't! Well done!&lt;BR /&gt;</description>
      <pubDate>Fri, 21 Aug 2009 00:19:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890490#M78099</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-08-21T00:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890491#M78100</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336209"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;Ah, David noticed what I didn't! Well done!&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;I truly appreciate the help. i will email the entire file to steve. i just installed the compiler and perhaps need a lesson on using it. i do "access" it thru visual studio. the file is a .for file but when it compiles it intoduces(?) a .f90 tab within the visual studio. i use the build menu, build soluion or rebuild solution options. if there's a compile option, i'm not sure i've located it as yet.&lt;BR /&gt;&lt;BR /&gt;by the way, i'm in alaska so my time zone differs from yours.</description>
      <pubDate>Fri, 21 Aug 2009 18:19:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890491#M78100</guid>
      <dc:creator>boyd_georgebp_com</dc:creator>
      <dc:date>2009-08-21T18:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890492#M78101</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/142656"&gt;David White&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Boyd,&lt;BR /&gt;&lt;BR /&gt;You are using fixed format code and your filename is .f90, so the compile expects free-format, Fortran 90 syntax. Change your filename to .for, so that the compiler expects fixed format code.&lt;BR /&gt;&lt;BR /&gt;David&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Thank you david. Being new to visual studio may be my problem. I used a .for as a start. when i choose the build or rebuild options from the studio menu it appears to compile a .f90 tab where my errors are posted. supposedly it's smart enough to know the .for extension recognizes it's a fixed field file and compiles accordingly. is there an option someplace where i can ensure that?&lt;BR /&gt;&lt;BR /&gt;I appreciate your insight and help. as i've entitled this whole string, i bet it's pretty basic.</description>
      <pubDate>Fri, 21 Aug 2009 18:29:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890492#M78101</guid>
      <dc:creator>boyd_georgebp_com</dc:creator>
      <dc:date>2009-08-21T18:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890493#M78102</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/99850"&gt;jimdempseyatthecove&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;Check for tab characters in your file. Fixed format files do not like tabs. Apparently this file was edited ("program adce"), so it is likely you used a "modern" editor on this file. Some editors will do you a "favor" and replace multiple spaces with tab.&lt;BR /&gt;&lt;BR /&gt;If that doesn't show up anything then insert conditional compile statements in Fortran or use the conditional compile in FPP. Essentially you fence off sections of code and see if it compiles, then move the fence&lt;BR /&gt;&lt;BR /&gt;Using FPP&lt;BR /&gt;&lt;BR /&gt;program adce&lt;BR /&gt;#if 0&lt;BR /&gt;...&lt;BR /&gt;#endif&lt;BR /&gt;end program&lt;BR /&gt;&lt;BR /&gt;If that compiles, then start moving the #if lower and/or #endif higher&lt;BR /&gt;&lt;BR /&gt;At some point you might get tag not found (e.g. GOTO 100 cannot find 100 CONTINUE)&lt;BR /&gt;&lt;BR /&gt;program adce&lt;BR /&gt;...&lt;BR /&gt;GOTO 100&lt;BR /&gt;#if 0&lt;BR /&gt;...&lt;BR /&gt;#endif&lt;BR /&gt;100 CONTINUE&lt;BR /&gt;#if 0&lt;BR /&gt;...&lt;BR /&gt;#endif&lt;BR /&gt;end program&lt;BR /&gt;&lt;BR /&gt;Jim&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Fri, 21 Aug 2009 18:30:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890493#M78102</guid>
      <dc:creator>boyd_georgebp_com</dc:creator>
      <dc:date>2009-08-21T18:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890494#M78103</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/436589"&gt;boyd.georgebp.com&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;I'm not 100% sure about how to spot tabs, but here's what i did. i went to the statement identifer field that begins in column 73 and backspaced watching for "jumps" that might suggest tabs to me. what i saw was what appears to be a space by space progression with no jumps. so i assumed there were no tabs, perhaps mistakenly. is there a more certain way to know?&lt;BR /&gt;&lt;BR /&gt;Boyd</description>
      <pubDate>Fri, 21 Aug 2009 18:33:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890494#M78103</guid>
      <dc:creator>boyd_georgebp_com</dc:creator>
      <dc:date>2009-08-21T18:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890495#M78104</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Boyd,&lt;BR /&gt;&lt;BR /&gt;While it is true that if you create a new Fortran source file in Visual Studio it selects .f90 as the file type by default, you can change that to a .for by retyping the name. Once you have the file in the project, the name does not get changed.&lt;BR /&gt;&lt;BR /&gt;You can simply click twice on the file name in Solution Explorer and change the name to have a .f90 file type.&lt;BR /&gt;</description>
      <pubDate>Fri, 21 Aug 2009 18:34:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890495#M78104</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-08-21T18:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Pretty Basic Stuff</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890496#M78105</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/99850"&gt;jimdempseyatthecove&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;Check for tab characters in your file. Fixed format files do not like tabs. Apparently this file was edited ("program adce"), so it is likely you used a "modern" editor on this file. Some editors will do you a "favor" and replace multiple spaces with tab.&lt;BR /&gt;&lt;BR /&gt;If that doesn't show up anything then insert conditional compile statements in Fortran or use the conditional compile in FPP. Essentially you fence off sections of code and see if it compiles, then move the fence&lt;BR /&gt;&lt;BR /&gt;Using FPP&lt;BR /&gt;&lt;BR /&gt;program adce&lt;BR /&gt;#if 0&lt;BR /&gt;...&lt;BR /&gt;#endif&lt;BR /&gt;end program&lt;BR /&gt;&lt;BR /&gt;If that compiles, then start moving the #if lower and/or #endif higher&lt;BR /&gt;&lt;BR /&gt;At some point you might get tag not found (e.g. GOTO 100 cannot find 100 CONTINUE)&lt;BR /&gt;&lt;BR /&gt;program adce&lt;BR /&gt;...&lt;BR /&gt;GOTO 100&lt;BR /&gt;#if 0&lt;BR /&gt;...&lt;BR /&gt;#endif&lt;BR /&gt;100 CONTINUE&lt;BR /&gt;#if 0&lt;BR /&gt;...&lt;BR /&gt;#endif&lt;BR /&gt;end program&lt;BR /&gt;&lt;BR /&gt;Jim&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Fri, 21 Aug 2009 18:36:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Pretty-Basic-Stuff/m-p/890496#M78105</guid>
      <dc:creator>boyd_georgebp_com</dc:creator>
      <dc:date>2009-08-21T18:36:08Z</dc:date>
    </item>
  </channel>
</rss>

