<?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 I just ran the program with a in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106934#M128317</link>
    <description>&lt;P&gt;I just ran the program with a shell and beam sample and it worked all the way through the eignevectors first time - darn this great - got to check the answers - but it is good.&lt;/P&gt;

&lt;P&gt;Thanks for all the help - I really appreciate the assistance.&lt;/P&gt;

&lt;P&gt;The challenge is the bridge with standard beams that are then concreted together - makes the analysis a conceptual challenge - we know they work, but a bit like we know a Roman legion is going to wipe out a small group of Celts in a frontal assault.&amp;nbsp; Still wondering about the 9th.&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679&amp;nbsp; 
&amp;nbsp; 8214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196&amp;nbsp; 
&amp;nbsp; 4428810975665933446128475648233786783165271201909145648566923460348610454326648213393607260249141273&amp;nbsp; 
&amp;nbsp; 724587006606315588174881520920962829254091715364367892590360011330530548820466521384146951941511609&lt;/PRE&gt;

&lt;P&gt;Steve:&lt;/P&gt;

&lt;P&gt;How many places can I make pi&lt;/P&gt;

&lt;P&gt;John&lt;/P&gt;</description>
    <pubDate>Fri, 24 Jun 2016 01:20:26 GMT</pubDate>
    <dc:creator>JohnNichols</dc:creator>
    <dc:date>2016-06-24T01:20:26Z</dc:date>
    <item>
      <title>Unrecognized tokens</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106930#M128313</link>
      <description>&lt;PRE class="brush:fortran;"&gt;MODULE ROT
&amp;nbsp;&amp;nbsp;&amp;nbsp; 

!-----------------------------------------------------------------------
! euler rotation of model geometry
!-----------------------------------------------------------------------
!
! C_ALPHA : rotation about z-axis
! C_BETA&amp;nbsp; : rotation about new y-axis 
! C_GAMMA : rotation about new z-axis 
!
! C_FORWARD : rotation matricies to geographic coordinates
! C_REVERSE : rotation matricies to model coordinates
!
!-----------------------------------------------------------------------
&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER, PARAMETER :: dp = selected_real_kind(15, 307)
&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER, PARAMETER :: sw = 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !&amp;nbsp;&amp;nbsp; Output file
&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL (KIND=dp), PARAMETER :: gr = 9.806, pi = 3.14159265D0&amp;nbsp; !&amp;nbsp;&amp;nbsp; Standard parameters
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;REAL(KIND=dp) CALPHA
&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL(KIND=dp) CBETA
&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL(KIND=dp) CGAMMA

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL (KIND=dp)&amp;nbsp; FORWARD(3,3)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL (KIND=dp) REVERSE(3,3)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALPHA = 0.0D0
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CBETA = 0.0D0&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CGAMMA = 0.0D0
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FORWARD = 0.0D0
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REVERSE = 0.0D0
!-----------------------------------------------------------------------
contains
!Euler Matrix

SUBROUTINE Rotate()

!-----------------------------------------------------------------------
! purpose: compute euler rotation matrix 
!-----------------------------------------------------------------------
!
! C_ALPHA&amp;nbsp;&amp;nbsp; : rotation about z-axis &amp;nbsp;
! C_BETA&amp;nbsp;&amp;nbsp;&amp;nbsp; : rotation about new y-axis &amp;nbsp;
! C_GAMMA&amp;nbsp;&amp;nbsp; : rotation about new z-axis&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;
! C_REVERSE : rotation to model coordinates 
! C_FORWARD : rotation to geographic coordinates
!
!-----------------------------------------------------------------------

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !local vars
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL (KIND=dp) COSA
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL (KIND=dp) SINA
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL (KIND=dp) COSB
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL (KIND=dp) SINB
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL (KIND=dp) COSG
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL (KIND=dp) SING

!-----------------------------------------------------------------------

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !compute sin and cos of all angles in degrees
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COSA&amp;nbsp; = C_COSD (CALPHA )
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SINA&amp;nbsp; = C_SIND (CALPHA )
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COSB&amp;nbsp; = C_COSD (CBETA&amp;nbsp; )
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SINB&amp;nbsp; = C_SIND (CBETA&amp;nbsp; )
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COSG&amp;nbsp; = C_COSD (CGAMMA )
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SING&amp;nbsp; = C_SIND (CGAMMA )
&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !compute rotation matrix into model coordinates
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REVERSE (1,1) =&amp;nbsp;&amp;nbsp; COSA * COSB * COSG&amp;nbsp; -&amp;nbsp; SINA * SING
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REVERSE (1,2) =&amp;nbsp;&amp;nbsp; SINA * COSB * COSG&amp;nbsp; +&amp;nbsp; COSA * SING
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REVERSE (1,3) =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - SINB * COSG
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REVERSE (2,1) = - COSA * COSB * SING&amp;nbsp; -&amp;nbsp; SINA * COSG
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REVERSE (2,2) = - SINA * COSB * SING&amp;nbsp; +&amp;nbsp; COSA * COSG
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REVERSE (2,3) =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SINB * SING
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REVERSE (3,1) =&amp;nbsp;&amp;nbsp; COSA * SINB
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REVERSE (3,2) =&amp;nbsp;&amp;nbsp; SINA * SINB
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REVERSE (3,3) =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COSB
&amp;nbsp;&amp;nbsp; &amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !compute rotation matrix into geographical coordinates
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FORWARD (1,1) =&amp;nbsp;&amp;nbsp; COSG * COSB * COSA&amp;nbsp; -&amp;nbsp; SING * SINA
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FORWARD (1,2) = - SING * COSB * COSA&amp;nbsp; -&amp;nbsp; COSG * SINA
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FORWARD (1,3) =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SINB * COSA
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FORWARD (2,1) =&amp;nbsp;&amp;nbsp; COSG * COSB * SINA&amp;nbsp; +&amp;nbsp; SING * COSA
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FORWARD (2,2) = - SING * COSB * SINA&amp;nbsp; +&amp;nbsp; COSG * COSA
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FORWARD (2,3) =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SINB * SINA
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FORWARD (3,1) = - COSG * SINB
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FORWARD (3,2) =&amp;nbsp;&amp;nbsp; SING * SINB
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FORWARD (3,3) =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COSB
&amp;nbsp; &amp;nbsp;
!-----------------------------------------------------------------------

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END SUBROUTINE ROTATE

END MODULE ROT
&lt;/PRE&gt;

&lt;P&gt;I get unrecognized tokens with this code -- I have played with it and cannot seem to understand how to fix it&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2016 17:48:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106930#M128313</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-23T17:48:52Z</dc:date>
    </item>
    <item>
      <title>There are nonprinting</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106931#M128314</link>
      <description>&lt;P&gt;There are nonprinting characters on some of these lines. For example, in line 19 of rotate.f90 (not the excerpt you posted) what should be five blanks at the beginning of the line are in fact hex A0 characters. You'll have to go through and fix these up.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2016 19:07:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106931#M128314</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-06-23T19:07:00Z</dc:date>
    </item>
    <item>
      <title>Steve:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106932#M128315</link>
      <description>&lt;P&gt;Steve:&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;I thought I would have to use a new routine for the transformations, but luckily&amp;nbsp; a long day provided the solution to the Harrison code.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I now have the Harrison program (heavily modified) running alongside the Felippa Shell program - so hopefully I will be able to add beams to the shells and study some old bridges.&amp;nbsp; Bridge construction methods are interesting, but weird to model in a strict topological sense.&lt;/P&gt;

&lt;P&gt;I spent a lot of time comparing all the published results with the output from the modified program.&amp;nbsp; I have identical numbers in everything down to about 0.1% until it passes into the PARDISO solver and then the&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;&amp;nbsp;INTEGER, PARAMETER :: dp = selected_real_kind(15, 307)

&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER, PARAMETER :: sw = 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !&amp;nbsp;&amp;nbsp; Output file
&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER, PARAMETER :: srA = 15&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !&amp;nbsp;&amp;nbsp; output.txt file
&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER, PARAMETER :: st = 14
&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER, PARAMETER :: sa = 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !&amp;nbsp;&amp;nbsp; Output file
&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER, PARAMETER :: smWrite = 4
&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER, PARAMETER :: si = 1
&amp;nbsp;&amp;nbsp;&amp;nbsp; Integer, parameter :: slog = 9&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !&amp;nbsp;&amp;nbsp; Log file
&amp;nbsp;&amp;nbsp;&amp;nbsp; Integer, parameter :: nta = 100&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !&amp;nbsp;&amp;nbsp; Log file
&amp;nbsp;&amp;nbsp;&amp;nbsp; Integer, parameter :: outNode = 63&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !&amp;nbsp;&amp;nbsp; Log file
&amp;nbsp;&amp;nbsp;&amp;nbsp; Integer, parameter :: inNode = 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !&amp;nbsp;&amp;nbsp; Log file

&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL (KIND=dp), PARAMETER :: gr = 9.806, pi = 3.14159265D0&amp;nbsp; !&amp;nbsp;&amp;nbsp; Standard parameters&lt;/PRE&gt;

&lt;P&gt;and numbers come out about 1% different.&amp;nbsp; I have compared every single input element and they are the same -- took a while to work out the gamma error between the writing in the book and the example data files.&amp;nbsp; Gamma is the z angle in a Cartesian coordinate transformation, in the book as shown in the figure the gamma is 90 , but the beam is parallel to the -z axis so gamma should be -90.&amp;nbsp; Changes the transformation matrix - took a while to work out.&lt;/P&gt;

&lt;P&gt;So do you think an old computer running Fortran 66 will likely invert slightly differently to the modern pardiso using double precision.&lt;/P&gt;

&lt;P&gt;John&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 00:43:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106932#M128315</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-24T00:43:55Z</dc:date>
    </item>
    <item>
      <title>There are uncountable reasons</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106933#M128316</link>
      <description>&lt;P&gt;There are uncountable reasons why numeric results might differ from something run on an unspecified computer decades ago. FP format differences, rounding techniques, vectorization, accuracy of math library, use of extended precision for intermediate results, order of operations, ... - the list is endless.&lt;/P&gt;

&lt;P&gt;Why is your double precision value of pi specified only to 11 digits?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 01:09:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106933#M128316</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-06-24T01:09:56Z</dc:date>
    </item>
    <item>
      <title>I just ran the program with a</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106934#M128317</link>
      <description>&lt;P&gt;I just ran the program with a shell and beam sample and it worked all the way through the eignevectors first time - darn this great - got to check the answers - but it is good.&lt;/P&gt;

&lt;P&gt;Thanks for all the help - I really appreciate the assistance.&lt;/P&gt;

&lt;P&gt;The challenge is the bridge with standard beams that are then concreted together - makes the analysis a conceptual challenge - we know they work, but a bit like we know a Roman legion is going to wipe out a small group of Celts in a frontal assault.&amp;nbsp; Still wondering about the 9th.&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679&amp;nbsp; 
&amp;nbsp; 8214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196&amp;nbsp; 
&amp;nbsp; 4428810975665933446128475648233786783165271201909145648566923460348610454326648213393607260249141273&amp;nbsp; 
&amp;nbsp; 724587006606315588174881520920962829254091715364367892590360011330530548820466521384146951941511609&lt;/PRE&gt;

&lt;P&gt;Steve:&lt;/P&gt;

&lt;P&gt;How many places can I make pi&lt;/P&gt;

&lt;P&gt;John&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 01:20:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106934#M128317</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-24T01:20:26Z</dc:date>
    </item>
    <item>
      <title> </title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106935#M128318</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Steve:&lt;/P&gt;

&lt;P&gt;Can I read in a single character at a time from a file of endless data? Like this&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;PROGRAM test_fgetc
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER :: fd = 42, status
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CHARACTER :: c
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OPEN(UNIT=fd, FILE="/etc/passwd", ACTION="READ", STATUS = "OLD")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DO
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALL fgetc(fd, c, status)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF (status /= 0) EXIT
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call fput(c)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END DO
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLOSE(UNIT=fd)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END PROGRAM
&lt;/PRE&gt;

&lt;P&gt;John&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 01:27:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106935#M128318</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-24T01:27:43Z</dc:date>
    </item>
    <item>
      <title>To read a stream of data from</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106936#M128319</link>
      <description>&lt;P&gt;To read a stream of data from a file, use stream access.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 02:52:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106936#M128319</guid>
      <dc:creator>IanH</dc:creator>
      <dc:date>2016-06-24T02:52:40Z</dc:date>
    </item>
    <item>
      <title>Quote:John Nichols wrote:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106937#M128320</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;John Nichols wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679&amp;nbsp; 
&amp;nbsp; 8214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196&amp;nbsp; 
&amp;nbsp; 4428810975665933446128475648233786783165271201909145648566923460348610454326648213393607260249141273&amp;nbsp; 
&amp;nbsp; 724587006606315588174881520920962829254091715364367892590360011330530548820466521384146951941511609&lt;/PRE&gt;

&lt;P&gt;Steve:&lt;/P&gt;

&lt;P&gt;How many places can I make pi&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;As written above, you have a single precision literal. Fortran does not auto-promote literals to left hand side variable&amp;nbsp; precision. IOW you must append "_8", or in your case alternately "_dp" because you had defined dp.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 12:09:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106937#M128320</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2016-06-24T12:09:29Z</dc:date>
    </item>
    <item>
      <title>Do I need to suggest that you</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106938#M128321</link>
      <description>&lt;P&gt;Do I need to suggest that you check for other instances where a literal needs to be tagged as _8/_dp?&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 12:12:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106938#M128321</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2016-06-24T12:12:27Z</dc:date>
    </item>
    <item>
      <title>1. Does not D0 make the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106939#M128322</link>
      <description>&lt;P&gt;1. Does not D0 make the number a real 8? (Post 3)&lt;/P&gt;

&lt;P&gt;2. The post 8 number was stolen from a lady at google who had it on her website.&amp;nbsp; ANy engineer in one of my classes who used pi to that level of accuracy would fail for lacking the intelligence to consider context and accuracy of the results.&lt;/P&gt;

&lt;P&gt;A bit like the surgeon who says - we saved your finger sorry about the fatal heart attack we missed during the surgery you did not say you were having chest pain&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 13:52:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106939#M128322</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-24T13:52:18Z</dc:date>
    </item>
    <item>
      <title>The D0 is fine but you didn't</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106940#M128323</link>
      <description>&lt;P&gt;The D0 is fine but you didn't include it in post 8. The _dp form would be my preference, though.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 13:59:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106940#M128323</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-06-24T13:59:27Z</dc:date>
    </item>
    <item>
      <title>Sorry that was a joke, I took</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106941#M128324</link>
      <description>&lt;P&gt;Sorry that was a joke, I took that number from a Google executive's web site -- it was in response to your comment - although I have given some definite thought to a FFT for the pi digits, one could take the mean about 4.5 so the zero frequency goes to zero, I need 880,000 digits to get a nice picture, which was the reason for the question about reading individual numbers.&lt;/P&gt;

&lt;P&gt;I will sue _dp from now on.&lt;/P&gt;

&lt;P&gt;Is there any point even with dp of having more than 15 digits?&lt;/P&gt;

&lt;P&gt;John&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 14:44:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106941#M128324</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-24T14:44:16Z</dc:date>
    </item>
    <item>
      <title>use _dp not sue</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106942#M128325</link>
      <description>&lt;P&gt;use _dp not sue&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 14:45:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106942#M128325</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-24T14:45:06Z</dc:date>
    </item>
    <item>
      <title>The general rule is to use</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106943#M128326</link>
      <description>&lt;P&gt;The general rule is to use three more digits than the precision of the data type, so 18 digits should do it here. This ensures that you will have the correctly rounded value.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 16:15:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unrecognized-tokens/m-p/1106943#M128326</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-06-24T16:15:18Z</dc:date>
    </item>
  </channel>
</rss>

