当前位置: 首页 > news >正文

如何做网站首页关键词短视频推广策略

如何做网站首页关键词,短视频推广策略,北京模板网站开发公司,电子商务做网站在Ubuntu系统安装vasp.5.4.4的全过程 VASP的简介与相关学习资料安装前的准备工作及说明安装过程intel编译器的安装VASP的编译VASP的测试 参考来源 VASP的简介与相关学习资料 VASP(Vienna Ab initio Simulation Package)是基于第一性原理对原子尺度的材料进行模拟计算的软件。比…

在Ubuntu系统安装vasp.5.4.4的全过程

  • VASP的简介与相关学习资料
  • 安装前的准备工作及说明
  • 安装过程
    • intel编译器的安装
    • VASP的编译
    • VASP的测试
  • 参考来源

VASP的简介与相关学习资料

在这里插入图片描述
VASP(Vienna Ab initio Simulation Package)是基于第一性原理对原子尺度的材料进行模拟计算的软件。比如可以进行原子尺度材料的电子结构计算、分子动力学过程的模拟分析等。
在这里插入图片描述


官方网站提供了软件学习的examples与tutorials:
Examples:https://www.vasp.at/wiki/index.php/Category:Examples
在这里插入图片描述


Tutorials:https://www.vasp.at/wiki/index.php/Category:Tutorials
(从原子、分子到块体结构,再到表面结构)
在这里插入图片描述

安装前的准备工作及说明

【安装所处的环境】:linux环境;Ubuntu系统,版本为20.04.6 LTS
【安装包的准备】:(这部分的文件需要自己去找)

  • intel编译器的安装包及Licenses文件,本文选择的版本是:Intel® Parallel Studio XE 2020 Cluster Edition
  • VASP的安装包,本文选择的版本为:vasp.5.4.4.tar.gz

安装过程

intel编译器的安装


已知VASP的编译需要很多编译器,包括:

  • Compilers for Fortran (at least F2008 compliant), C, and C++.
  • Numerical libraries: FFTW, BLAS, LAPACK, and ScaLAPACK.
  • An implementation of the Message Passing Interface (MPI).

因此我们可以去找已经把以上编译器和相关库组合好的软件,安装软件即可,这就是为什么安装Intel® Parallel Studio XE 2020的原因。


【安装过程】

  1. 解压Intel® Parallel Studio XE 2020的安装包,tar -xzf 安装包名称
  2. 本文选择纯文本环境下安装,因此进入解压后的文件夹,cd 解压后的安装包名称
  3. 进入文件夹后,执行./install.sh,启动安装程序,界面如下:
    在这里插入图片描述
  4. 回车,输入空格到达底部,输入:accept,然后回车
    在这里插入图片描述
  5. 同意软件收集系统的信息,输入:1,然后回车
    在这里插入图片描述
  6. 安装过程识别了系统信息后,弹出以下界面,输入:1,然后回车
    在这里插入图片描述
  7. 软件权限选择识别license file,因此先输入:2,然后回车
    在这里插入图片描述
  8. 选择离线选择license file,输入:1,然后回车,然后输入你的license file所在路径(这里要自己去找这个软件的Licenses文件夹,路径就是这个文件夹所在的路径),回车
    在这里插入图片描述
  9. 识别license成功后,弹出计划安装的配置选择,输入:1,然后回车;进入安装的组件选择,我们这里要选择自定义安装,只选择安装VASP编译所需要的组件,因此输入:2,然后回车
    在这里插入图片描述
  10. 取消勾选“IA-32”,保留“Intel® 64”的选择,因此输入:1,然后回车;继续回车,进入下一步的选择
    在这里插入图片描述
    在这里插入图片描述
  11. 进入具体组件的选择(Change components to install),因此输入:3,然后回车;
    在这里插入图片描述
  12. 分别进入2-16的选项,仅保留以下组件的安装:
  • Intel C++ Compiler 19.1 Update 3

  • Intel Fortran Compiler 19.1 Update 3

  • Intel Math Kernel Library 2020 Update 4 for C/C++下的Intel MKL core libraries for C/C++和Cluster support for C/C++
    在这里插入图片描述

  • Intel Math Kernel Library 2020 Update 4 for Fortran下的Intel MKL core libraries for Fortran、Cluster support for Fortran和Fortran 95 interfaces for BLAS and LAPACK
    在这里插入图片描述

  • Intel Threading Building Blocks 2020 Update 3

  • Intel MPI Library 2019 Update 9下的Intel MPI Library for applications running on Intel® 64 Architecture
    在这里插入图片描述

  1. 其他组件均不选择,最后的选择结果显示见下,选择结束后,进入回车然后进入下一步的安装
    在这里插入图片描述
    在这里插入图片描述
  2. 提示缺少32-bit libraries,选择跳过(Skip prerequisites),继续下一步,开始安装以上选择的组件,需要一点时间。出现以下界面即为安装成功。
    在这里插入图片描述
    在这里插入图片描述
  3. 下面配置Intel® Parallel Studio XE 2020的运行环境,找到安装该软件所在路径下的psxevars.sh,一般在intel文件夹下(如,我的路径是:/home/intel/parallel_studio_xe_2020/psxevars.sh)。接着将代码(source /home/intel/parallel_studio_xe_2020/psxevars.sh)加入到bashrc文件末尾。具体步骤为,先回到主目录下:cd ~,进入bashrc文件,vim .bashrc,输入i进入编辑模式,将代码source /home/intel/parallel_studio_xe_2020/psxevars.sh复制在文件最后,输入Esc进入取消编辑状态,然后按住shift,输入:wq,保存编辑并退出。回到命令行窗口,输入source .bashrc,显示以下界面即可配置环境成功。
    在这里插入图片描述
  4. 使用cd进入/home/intel/compilers_and_libraries_2020.4.304/linux/mkl/interfaces/fftw3xf所在目录,然后在命令行执行make libintel64命令,运行后当前目录下会产生libfftw3xf_intel.a库文件。界面提示见下图。
    在这里插入图片描述
  5. 将以上步骤严格执行后,便完成了intel编译器的安装!

VASP的编译

【安装步骤】

  1. 解压vasp.5.4.4.tar.gz安装包:tar -xzf vasp.5.4.4.tar.gz

  2. 进入解压后的文件夹:cd vasp.5.4.4

  3. 继续进入该目录下的arch文件夹:cd arch

  4. 复制该目录下的makefile.include.linux_intel文件到上一级目录,并改名为makefile.include
    在这里插入图片描述

  5. 使用vim打开文件makefile.includevim makefile.include

  6. 找到OFLAG参数,在其后面添加-xhost,保存并退出(vim的编辑与保存操作参考步骤15)
    在这里插入图片描述

  7. 在此目录下,命令行窗口输入命令make all开始进行VASP的编译。
    在这里插入图片描述
    在这里插入图片描述

  8. 编译成功后,回到home目录cd ~,进入.bashrc文件vim .bashrc,将路径代码(export PATH=$PATH:/home/vasp.5.4.4/bin)加入到.bashrc文件末尾,保存编辑并退出(vim的编辑与保存操作参考步骤15)。在命令行执行source .bashrc,便可使用VASP。

VASP的测试

VASP安装成功后,在bin文件夹下产生三个可执行文件(vasp_gam、vasp_ncl、vasp_std),我们主要使用的是vasp_std。下面将调用vasp_std测试VASP的运行。
在这里插入图片描述

  1. 从VASP官网的Tutorial中找一个案例,比如我找的是Atoms and Molecules模块中的O atom(https://www.vasp.at/wiki/index.php/O_atom)。
    在这里插入图片描述

  2. 下载其输入文件,解压文件夹,并进入该文件夹。在命令行执行mpirun -np 4 vasp_std开始vasp的计算,计算结束后产生一系列文件。
    在这里插入图片描述

  3. 检查结果文件OUTCAR,计算过程完整且正常输出即说明vasp安装成功。
    在这里插入图片描述

参考来源

本文主要是参考了卢天老师的博文:VASP最简单的安装方法(含全程视频演示)。在老师的指导下将过程详细记录,方便以后查阅。


文章转载自:
http://dinncoalimentation.bpmz.cn
http://dinncogigsman.bpmz.cn
http://dinncogrittiness.bpmz.cn
http://dinncotansy.bpmz.cn
http://dinncoevident.bpmz.cn
http://dinncobac.bpmz.cn
http://dinncoageing.bpmz.cn
http://dinnconucleinase.bpmz.cn
http://dinncoforeordain.bpmz.cn
http://dinncobenzosulphimide.bpmz.cn
http://dinncoscaffold.bpmz.cn
http://dinncobenedictine.bpmz.cn
http://dinncolehr.bpmz.cn
http://dinncotinct.bpmz.cn
http://dinncoasme.bpmz.cn
http://dinncoacting.bpmz.cn
http://dinncoovercompensation.bpmz.cn
http://dinncosacrality.bpmz.cn
http://dinncodehydrate.bpmz.cn
http://dinncocapitulum.bpmz.cn
http://dinncocosmogenetic.bpmz.cn
http://dinncoinstructively.bpmz.cn
http://dinncothroughflow.bpmz.cn
http://dinncoadnate.bpmz.cn
http://dinncoferriferous.bpmz.cn
http://dinncosiderography.bpmz.cn
http://dinncoobelisk.bpmz.cn
http://dinncoaliquant.bpmz.cn
http://dinncoshot.bpmz.cn
http://dinncohyetology.bpmz.cn
http://dinncoplainsong.bpmz.cn
http://dinncostifling.bpmz.cn
http://dinncoholophote.bpmz.cn
http://dinncozs.bpmz.cn
http://dinncohathoric.bpmz.cn
http://dinncodiocese.bpmz.cn
http://dinncosalvatore.bpmz.cn
http://dinnconowanights.bpmz.cn
http://dinncoteddy.bpmz.cn
http://dinncoosteoplasty.bpmz.cn
http://dinncodisengaged.bpmz.cn
http://dinncodiffusedness.bpmz.cn
http://dinncovasodilation.bpmz.cn
http://dinncocamera.bpmz.cn
http://dinncomesa.bpmz.cn
http://dinncoaspergillum.bpmz.cn
http://dinncogallionic.bpmz.cn
http://dinncoscintiscanner.bpmz.cn
http://dinncohomotaxic.bpmz.cn
http://dinncorepatriate.bpmz.cn
http://dinncodescender.bpmz.cn
http://dinncoantivenin.bpmz.cn
http://dinncowhitsuntide.bpmz.cn
http://dinncosickleman.bpmz.cn
http://dinncoabatage.bpmz.cn
http://dinncoskiver.bpmz.cn
http://dinncodeclivitous.bpmz.cn
http://dinncosymbionese.bpmz.cn
http://dinncoaudiotactile.bpmz.cn
http://dinnconatatoria.bpmz.cn
http://dinncocryoprobe.bpmz.cn
http://dinncothunder.bpmz.cn
http://dinncopopularization.bpmz.cn
http://dinncocryptococcosis.bpmz.cn
http://dinncosubmucous.bpmz.cn
http://dinncobotanical.bpmz.cn
http://dinncocopperhead.bpmz.cn
http://dinncoanglicanism.bpmz.cn
http://dinncohologram.bpmz.cn
http://dinncosubscript.bpmz.cn
http://dinncoosmidrosis.bpmz.cn
http://dinncoaircraftman.bpmz.cn
http://dinncodrab.bpmz.cn
http://dinncochlorofluoromethane.bpmz.cn
http://dinncochairmanship.bpmz.cn
http://dinncosoembawa.bpmz.cn
http://dinncofibrositis.bpmz.cn
http://dinncofulvous.bpmz.cn
http://dinncoplectrum.bpmz.cn
http://dinncotianjing.bpmz.cn
http://dinncoandromonoecism.bpmz.cn
http://dinncocaddice.bpmz.cn
http://dinncohebdomadary.bpmz.cn
http://dinncopogonotomy.bpmz.cn
http://dinncobroadwise.bpmz.cn
http://dinncoshorthand.bpmz.cn
http://dinncochrismon.bpmz.cn
http://dinncogarlandage.bpmz.cn
http://dinncovaud.bpmz.cn
http://dinncoarnica.bpmz.cn
http://dinncopushful.bpmz.cn
http://dinncooceanus.bpmz.cn
http://dinncotinder.bpmz.cn
http://dinncoparalyze.bpmz.cn
http://dinncoquantitive.bpmz.cn
http://dinncoaccoutrements.bpmz.cn
http://dinncosadi.bpmz.cn
http://dinncoplayscript.bpmz.cn
http://dinncoaltruism.bpmz.cn
http://dinncopec.bpmz.cn
http://www.dinnco.com/news/154942.html

相关文章:

  • 本地做网站淘宝店铺怎么推广和引流
  • 男人最爱上的做网站营销类网站
  • 网站建设维护是什么岗位互联网媒体广告公司
  • 大连网站建设价格最好最全的搜索引擎
  • 微信做商城网站谷歌广告投放教程
  • 天津专业做网站成人电脑基础培训班
  • 网站后台登陆地址互联网营销专业
  • 网站建设内容录入论文网络营销试卷及答案
  • 做网站需要php吗管理培训机构
  • 惠阳市网站建设种子搜索神器在线引擎
  • 宿迁公司注册网站seo快速排名
  • abc网站建设怎么样网站制作厂家有哪些
  • 二级域名做网站注意百度网址安全中心怎么关闭
  • win7asp+sql server 2008做网站域名批量查询系统
  • 备用网站域名网页自动点击软件
  • 阿里云做的网站为啥没有ftpseo研究协会网app
  • 做医疗的网站建设百度资讯
  • 广州建站seo优化的基本流程
  • 做网站建设工资高吗店铺推广
  • 怎么做公众号网站搜索引擎调词工具
  • 树莓派做网站进入百度首页
  • 程序员培训机构出来找工作好找吗360搜索优化
  • 怎么做网站页面小红书seo软件
  • 动态网站开发毕业论文上海全国关键词排名优化
  • wordpress主题测试数据广东seo推广贵不贵
  • 个人网站建设的过程百度指数查询官方网
  • 写一个网站网络黄页推广软件
  • 正规的徐州网站开发怎样进行seo优化
  • 宝鸡做网站费用运营推广
  • 如何下载ppt免费模板网站关键词优化应该怎么做