资源简介
这是vasp4.6软件包,有代码,有说明文档和一些讲义,代码没有验证过,哪位仁兄下载了验证下。
代码片段和文件信息
/*****************************************************************
FORTRAN interface to get user-time and real time on
AIX-system might work on other UNIX systems as well
(must work on all BSDish systems and SYSVish systems
with BSD-compatibility timing routines ...)!?
*****************************************************************/
#ifndef NULL
#define NULL ((void *)0)
#endif
#include
#include
void vtime(vputimcputim)
double *vputim*cputim;
{
int gettimeofday();
int getrusage();
struct rusage ppt;
struct rusage cpt;
struct timeval tputps;
struct timeval tcutcs;
struct timeval now;
int ierr;
ierr = getrusage(RUSAGE_SELF&ppt);
tpu = ppt.ru_utime;
tps = ppt.ru_stime;
ierr = getrusage(RUSAGE_CHILDREN&cpt);
tcu = cpt.ru_utime;
tcs = cpt.ru_stime;
ierr = gettimeofday(&nowNULL);
*vputim=((double) tpu.tv_sec) + ((double) tpu.tv_usec) / 1e6 +
((double) tps.tv_sec) + ((double) tps.tv_usec) / 1e6 +
((double) tcu.tv_sec) + ((double) tcu.tv_usec) / 1e6 +
((double) tcs.tv_sec) + ((double) tcs.tv_usec) / 1e6;
*cputim=((double) now.tv_sec) + ((double) now.tv_usec) / 1e6;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 858303 2006-06-16 19:02 vasp1.pdf
----------- --------- ---------- ----- ----
858303 1
相关资源
- VASP ----
- vasp.5.3.2.tar.gz
- VASP:5.4.4版本.tar.gz格式
- vasp.5.4.4&beef-src.tar.xz
- vasp 5.2.12.tar.gz
- 第一原理电子结构计算程序VASP实用教
- vasp.5.4.1.05Feb16.tar.gz
- vasp4.6软件包
- VASP_5.4.4版
- vasp5源代码
- vasp 使用手册 完整版
- Vasp程序源代码
- 利用vasp工具计算石墨烯的的电子结构
- VASP 5.4.4 Source Code
- 第一性原理计算软件VASP的LDA赝势文件
- p4vasp for windows install
- vasp 侯柱峰资料
- VASP 5.4.4
- vasp5.3.5.tar
- VASP赝势文件PAW PW91
- VASP 完整赝势库
- VASP赝势文件PAW PBE
- vaspkit.1.00.linux.x64.tar.gz
- 图形化处理软件P4VASP
-
vasp scf sc
ript (vasp自洽计算脚本) - vasp中文手册
- vasp tools
- vasp产生K点的小程序
- 官方最新VASP测试算例
- vasp.4.lib.tar.gz
评论
共有 条评论