<?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: How can one module be different modules?  Bug? in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-can-one-module-be-different-modules-Bug/m-p/901625#M80903</link>
    <description>I'd be astonished if changing the include paths made a difference for this issue, since the Intel compiler cannot read CVF .mod files.&lt;BR /&gt;</description>
    <pubDate>Wed, 20 Aug 2008 19:21:53 GMT</pubDate>
    <dc:creator>Steven_L_Intel1</dc:creator>
    <dc:date>2008-08-20T19:21:53Z</dc:date>
    <item>
      <title>How can one module be different modules?  Bug?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-can-one-module-be-different-modules-Bug/m-p/901622#M80900</link>
      <description>&lt;P&gt;With the following source code (condensed from the actual)&lt;/P&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="1"&gt;
&lt;P&gt;Module&lt;/P&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt; NewMaterialBurnupStepM&lt;BR /&gt; &lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="1"&gt;Implicit none&lt;BR /&gt;Contains&lt;BR /&gt; &lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="1"&gt;Function&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt; NewMaterialBurnupStep (ThisMaterial) &lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="1"&gt;result&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt; (This)&lt;BR /&gt;  &lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="1"&gt;Use&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt; WIMSBURFCaseM&lt;BR /&gt; &lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="1"&gt;Type&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt; (MaterialType), &lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="1"&gt;intent&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt; (In), &lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="1"&gt;target&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt;:: ThisMaterial&lt;BR /&gt; &lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="1"&gt;Type&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt; (MaterialBurnupStepType):: This&lt;BR /&gt; This % Material =&amp;gt; ThisMaterial&lt;BR /&gt; This % ReactionFissionPerLengthTime = ReactionFission_per_CmSec (0.0)&lt;BR /&gt; &lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="1"&gt;End function&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt; NewMaterialBurnupStep&lt;BR /&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="1"&gt;End module&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt; NewMaterialBurnupStepM&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;
&lt;P&gt;I get the error message &lt;/P&gt;&lt;FONT size="1"&gt;
&lt;P&gt;Error: The same named entity from different modules and/or program units cannot be referenced. [REACTIONFISSION_PER_CMSEC]&lt;/P&gt;&lt;/FONT&gt;
&lt;P&gt;How can I be referring to it from different modules when I only&lt;STRONG&gt;&lt;FONT color="#0000ff" size="1"&gt;Use&lt;/FONT&gt;&lt;/STRONG&gt; one module? What's more to the point, how can I correct this program, so that I can earn a living?&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2008 14:19:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-can-one-module-be-different-modules-Bug/m-p/901622#M80900</guid>
      <dc:creator>davisr</dc:creator>
      <dc:date>2008-08-20T14:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: How can one module be different modules?  Bug?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-can-one-module-be-different-modules-Bug/m-p/901623#M80901</link>
      <description>If WIMSBURFCaseM USEd two other modules, both of which define ReactionFission_per_CmSec, you'd see this error. The duplicate definitions are not an error until you reference the name.&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Aug 2008 15:00:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-can-one-module-be-different-modules-Bug/m-p/901623#M80901</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2008-08-20T15:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: How can one module be different modules?  Bug?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-can-one-module-be-different-modules-Bug/m-p/901624#M80902</link>
      <description>&lt;P&gt;Thank you for your help.&lt;/P&gt;
&lt;P&gt;That was not the problem. However, after another problem, and an inability to reproduce the problem in a smaller program, I discovered that under Properties ? Configuration Properties ? Fortran ? Preprocessor ? Additional Include Directories, where a list of several long directory names is crammed into a tiny space, there was a reference to a directory full of .mod files prepared by CVF. Correcting that sure corrected a lot of problems. I am going around all my other problem postings on this site to ensure that noboby wastes any (more) time on this problem.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2008 18:37:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-can-one-module-be-different-modules-Bug/m-p/901624#M80902</guid>
      <dc:creator>davisr</dc:creator>
      <dc:date>2008-08-20T18:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: How can one module be different modules?  Bug?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-can-one-module-be-different-modules-Bug/m-p/901625#M80903</link>
      <description>I'd be astonished if changing the include paths made a difference for this issue, since the Intel compiler cannot read CVF .mod files.&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Aug 2008 19:21:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-can-one-module-be-different-modules-Bug/m-p/901625#M80903</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2008-08-20T19:21:53Z</dc:date>
    </item>
  </channel>
</rss>

