在安装完abaqus后在进行verification时有可能碰到以下问题.docx_第1页
在安装完abaqus后在进行verification时有可能碰到以下问题.docx_第2页
在安装完abaqus后在进行verification时有可能碰到以下问题.docx_第3页
在安装完abaqus后在进行verification时有可能碰到以下问题.docx_第4页
在安装完abaqus后在进行verification时有可能碰到以下问题.docx_第5页
已阅读5页,还剩13页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

在安装完abaqus后在进行verification时有可能碰到以下问题Status: Fail - Unable to locate or determine the version of a Fortran compiler on this system. If Intel Fortran is installed on this system, please load ifortvars.bat before running Abaqus.这表示abaqus未能与fortran成功链接。若需要链接abaqus with fortran 则安装完后需要进行以下设置。 当然有些在安装的时候已经设置好了。如果出现问题可以试试下面的方法。以下过程主要目的是将ifortvars(可能有后缀,不通系统不一样)中的内容复制到 abaqus commond文件夹下的abaqus.bat(可能名称有区别) 文件,这样abaqus才能找到fortran。 之前搞了半天没弄明白,后来找了个非常nice的老外给弄好了,这老师那个亲切啊我的系统:Windows 7 (64位) + Microsoft Visual studio 2008 + Intel(R) Fortran Compiler Professional 11.1.067 + Abaqus 6.10-11. 寻找两个文件 .bat 文件在我的计算机上路径如下:1.1 Start-All Program-Abaqus 6.10-1- Abaqus Verification (right click) - Property在出现的对话框中 点Shortcut子对话框 查看Target 中的内容, 我的是C:SIMULIAAbaqusCommandsabq6101.bat -verify -all -log & notepad.exe verify.log | notepad.exeverify.log说明verification运行的是 abq6101.bat。 确认运行的哪个bat文件非常重要,因为如果版本不一样commonds文件夹中有可能还会有不同的bat文件。 所以需要首先check1.2 Start-All Program-Intel(R) Software Development Tools-Intel(R) Visual Fortran Compiler Professional11.1.067 我的是64位的,所以右键点击 Fortran Build Environment for applications running on Intel(R)64 - Property (如果是32位则选择另外一个,即Fortran Build Environment for applications running onIntel(R) IA-32)shortcut-target 中的内容为:C:WindowsSysWOW64cmd.exe /E:ON /V:ON /K C:Program Files (x86)IntelCompiler11.1067binifortvars.bat intel64即需要在相应目录下寻找 ifortvars.bat,由于我的电脑是64位的 所以在bin文件夹下有两个文件夹ia32,intel 64以及 ifortvars.bat 文件。 对于我的电脑得在intel 64 中寻找 ifortvars_intel64.bat。 不同的系统可能稍有差异,有可能只需要找到ifortvars.bat 或者是找ifortvars_ia32.bat。可以都打开看看我的ifortvars_intel64.bat文件内容为echo offRemRem Copyright (C) 1985-2010 Intel Corporation. All rights reserved.RemRem The information and source code contained herein is the exclusive propertyRem of Intel Corporation and may not be disclosed, examined, or reproduced inRem whole or in part without explicit written authorization from the Company.RemRem Intel(R) Visual Fortran Intel(R) 64 Compiler Professional Build Environment for applications running on Intel(R) 64echo.echo Intel(R) Visual Fortran Intel(R) 64 Compiler Professional for applications running on Intel(R) 64, Version 11.1.067echo Copyright (C) 1985-2010 Intel Corporation. All rights reserved.echo.if %1 EQU vs2008 (call C:Program Files (x86)Microsoft Visual Studio 9.0VCvcvarsall.bat x64) else (if %1 EQU vs2005 (call echo. ) else (call C:Program Files (x86)Microsoft Visual Studio 9.0VCvcvarsall.bat x64)title Intel(R) Visual Fortran Intel(R) 64 Compiler Professional for applications running on Intel(R) 64, Version 11.1.067 build environmentecho.SET IFORT_COMPILER11=C:Program Files (x86)IntelCompiler11.1067SET INTEL_LICENSE_FILE=C:Program Files (x86)Common FilesIntelLicenses;%INTEL_LICENSE_FILE%SET PATH=%IFORT_COMPILER11%Binintel64;%PATH%SET LIB=%IFORT_COMPILER11%Libintel64;%LIB%SET INCLUDE=%IFORT_COMPILER11%Include;%IFORT_COMPILER11%IncludeIntel64;%INCLUDE%我的abq6101.bat文件内容为echo offC:SIMULIAAbaqus6.10-1execabq6101.exe %*2. 将ifortvars_intel64.bat文件内容复制粘贴到abaq6101.bat文件开头。如下echo offRemRem Copyright (C) 1985-2010 Intel Corporation. All rights reserved.RemRem The information and source code contained herein is the exclusive propertyRem of Intel Corporation and may not be disclosed, examined, or reproduced inRem whole or in part without explicit written authorization from the Company.RemRem Intel(R) Visual Fortran Intel(R) 64 Compiler Professional Build Environment for applications running on Intel(R) 64echo.echo Intel(R) Visual Fortran Intel(R) 64 Compiler Professional for applications running on Intel(R) 64, Version 11.1.067echo Copyright (C) 1985-2010 Intel Corporation. All rights reserved.echo.if %1 EQU vs2008 (call C:Program Files (x86)Microsoft Visual Studio 9.0VCvcvarsall.bat x64) else (if %1 EQU vs2005 (call echo. ) else (call C:Program Files (x86)Microsoft Visual Studio 9.0VCvcvarsall.bat x64)title Intel(R) Visual Fortran Intel(R) 64 Compiler Professional for applications running on Intel(R) 64, Version 11.1.067 build environmentecho.SET IFORT_COMPILER11=C:Program Files (x86)IntelCompiler11.1067SET INTEL_LICENSE_FILE=C:Program Files (x86)Common FilesIntelLicenses;%INTEL_LICENSE_FILE%SET PATH=%IFORT_COMPILER11%Binintel64;%PATH%SET LIB=%IFORT_COMPILER11%Libintel64;%LIB%SET INCLUDE=%IFORT_COMPILER11%Include;%IFORT_COMPILER11%IncludeIntel64;%INCLUDE%echo offC:SIMULIAAbaqus6.10-1execabq6101.exe %*3. 点击abaqus verification 重新check, 结果可在verify.log文件中查询。(也可在commond session中输入 abaqus verify -install 会更快,而且结果直接在屏幕上输出) OK 结束。一下为操作前和操作后的结果操作前:Abaqus Product Install Verification.Tue Jun 7 12:10:49 2011Running system requirement checks.Requirement: Windows Server 2003, Windows Server 2008, Windows Server2008 R2, Windows HPC Server 2008, Windows XP, Windows Vista,or Windows 7Product: All Abaqus ProductsStatus: Pass - Found Windows 7 Professional (Build 7600) (x64).Requirement: Microsoft Visual C+ 9.0 (2008), or 10.0 (2010)Product: Abaqus make utility with C+Status: Fail - Unable to locate or determine the version of a C+compiler on this system. If Microsoft Visual C+ 8.0 (.NET2005) is installed on this system, please loadvcvarsamd64.bat file before running Abaqus.Requirement: Intel Fortran Compiler 10.1, or 11.1Product: Abaqus make utility with Fortran and Abaqus with usersubroutinesStatus: Fail - Unable to locate or determine the version of aFortran compiler on this system. If Intel Fortran isinstalled on this system, please load ifortvars.bat beforerunning Abaqus.Requirement: MS-MPI 2.0, 3.0 or greaterProduct: Abaqus analyses using MPI-based parallelization andAbaqus/CFDStatus: Pass - Found MS-MPI 2.1.1765.0.Requirement: Internet Explorer 6.0 or 7.0 or 8.0, Firefox 2.0 or 3.0 or3.5 or greaterProduct: Abaqus DocumentationStatus: Pass - Found Internet Explorer 8.0.7600.16766Making C:Tempverify. All verification files will reside in this directory.-Abaqus/Standard.PASSContinuing.-Abaqus/Standard with user subroutines.INFORMATIONSystem requirements were not met. Verificationprocedure will be skipped. However, user subroutinescan be run using a precompiled library set by thevariable usub_lib_dir. For more information pleasesee the section 3.2.2 of Abaqus Analysis UsersManual.Continuing.-Abaqus/Explicit (single precision).PASSContinuing.-Abaqus/Explicit (double precision).PASSContinuing.-Abaqus/Explicit with user subroutines (single precision).INFORMATIONSystem requirements were not met. Verificationprocedure will be skipped. However, user subroutinescan be run using a precompiled library set by thevariable usub_lib_dir. For more information pleasesee the section 3.2.2 of Abaqus Analysis UsersManual.Continuing.-Abaqus/Explicit with user subroutines (double precision).INFORMATIONSystem requirements were not met. Verificationprocedure will be skipped. However, user subroutinescan be run using a precompiled library set by thevariable usub_lib_dir. For more information pleasesee the section 3.2.2 of Abaqus Analysis UsersManual.Continuing.-Abaqus/Viewer.PASSContinuing.-Abaqus/CAE.PASSContinuing.-Geometry Translator for CATIA V4.INFORMATIONProduct is not licensed. Verification procedure willbe skipped.Continuing.-Geometry Translator for CATIA V5.INFORMATIONProduct is not licensed. Verification procedure willbe skipped.Continuing.-Direct Geometry Import for CATIA V5.INFORMATIONProduct is not licensed. Verification procedure willbe skipped.Continuing.-Geometry Translator for I-DEAS.INFORMATIONProduct is not licensed. Verification procedure willbe skipped.Continuing.-Geometry Translator for Parasolid.INFORMATIONProduct is not licensed. Verification procedure willbe skipped.Continuing.-Geometry Translator for Pro/ENGINEER.INFORMATIONProduct is not licensed. Verification procedure willbe skipped.Continuing.-SolidWorks Associative Interface.INFORMATIONProduct is not licensed. Verification procedure willbe skipped.Continuing.-Abaqus/AMS.PASSContinuing.-Abaqus Interface for MSC.ADAMS.INFORMATIONProduct is not licensed. Verification procedure willbe skipped.Continuing.-Abaqus/Standard parametric studies.PASSContinuing.-Abaqus/Explicit parametric studies.PASSContinuing.-Abaqus/Design.PASSContinuing.-Abaqus Interface for Moldflow.INFORMATIONProduct is not licensed. Verification procedure willbe skipped.Continuing.-Abaqus make utility with Fortran.INFORMATIONSystem requirements were not met. Verificationprocedure will be skipped.Continuing.-Abaqus make utility with C+.INFORMATIONSystem requirements were not met. Verificationprocedure will be skipped.Continuing.-Abaqus make utility with object code.INFORMATIONSystem requirements were not met. Verificationprocedure will be skipped.Continuing.-Abaqus scripting interface.PASSContinuing.-Abaqus analyses using parallelizationRunning thread-based parallel with 2 cpu(s)Abaqus/Explicit domain-level parallel.PASSAbaqus/Standard direct solver.PASSContinuing.-Abaqus/Foundation.PASSContinuing.-Abaqus noGUI (CAE/Viewer).PASSContinuing.-Abaqus/CFD.PASSContinuing.-Clean-up.Verification directory C:Tempverify has been deleted.操作后:Abaqus Product Install Verification.Tue Jun 7 12:05:49 2011Running system requirement checks.Requirement: Windows Server 2003, Windows Server 2008, Windows Server2008 R2, Windows HPC Server 2008, Windows XP, Windows Vista,or Windows 7Product: All Abaqus ProductsStatus: Pass - Found Windows 7 Professional (Build 7600) (x64).Requirement: Microsoft Visual C+ 9.0 (2008), or 10.0 (2010)Product: Abaqus make utility with C+Status: Pass - Found Microsoft Visual C+ 9.0.21022.8.Requirement: Intel Fortran Compiler 10.1, or 11.1Product: Abaqus make utility with Fortran and Abaqus with usersubroutinesStatus: Pass - Found Intel Fortran Compiler 11.1 Build 20100806Package ID w_cprof_p_11.1.067.Requirement: MS-MPI 2.0, 3.0 or greaterProduct: Abaqus analyses using MPI-based parallelization andAbaqus/CFDStatus: Pass - Found MS-MPI 2.1.1765.0.Requirement: Internet Explorer 6.0 or 7.0 or 8.0, Firefox 2.0 or 3.0 or3.5 or greaterProduct: Abaqus DocumentationStatus: Pass - Found Internet Explorer 8.0.7600.16766Making C:Tempverify. All verification files will reside in this directory.-Abaqus/Standard.PASSContinuing.-Abaqus/Standard with user subroutines.PASSContinuing.-Abaqus/Explicit (single precision).PASSContinuing.-Abaqus/Explicit (double precision).PASSContinuing.-Abaqus/Explicit with user subroutines (single precision).PASSContinuing.-Abaqus/Explicit with user subroutines (double precision).PASSContinuing.-Abaqus/Viewer.PASSContinuing.-Abaqus/CAE.PASSContinuing.-Geometry Translator for CATIA V4.INFORMATIONProduct is not licensed. Verification procedure willbe skipped.Continuing.-Geometry Translator for CATIA V5.INFORMATIONProduct is not licensed. Verification procedure willbe skipped.Continuing.-Direct Geometry Import for CATIA V5.INFORMATIONProduct is not licensed. Verification procedure willbe skipped.Continuing.-Geometry Translator for I-DEAS.INFORMATIONProduct is not licensed. Verification procedure willbe skipped.Continuing.-Geometry Translator for Parasolid.INFORMATIONProduct is no

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论