#include<iostream>
int main()
{
int **ary3d;
ary3d = new **int[10];
for(int i=0;i<10;i++){
ary3d[i] = new *int[20];
for(int j=0;j<20;j++){
ary3d[i][j] = new intp[30];
}
}
}
2016年12月14日 星期三
2016年12月13日 星期二
Graphics
Fortran
1. GINO
2. MATFOR
3. Winteracter
http://www.polyhedron.com/graphicsguitools
BALLView
http://www.ball-project.org/
1. GINO
2. MATFOR
3. Winteracter
http://www.polyhedron.com/graphicsguitools
BALLView
http://www.ball-project.org/
PyMol
http://www.pymol.org/
http://www.pymol.org/
Avogadro http://avogadro.cc GPL A1 [54]
BALLView http://www.ball-project.org/ballview LPGL A2 [55]
gMol https://github.com/tjod/gMol/wiki GPL A3
Jamberoo https://sourceforge.net/projects/jbonzer LGPL A3
LPMV https://sourceforge.net/projects/lpmolecularviewer LGPL B3
Luscus https://sourceforge.net/projects/luscus Academic A1 [56]
Molecular Rift https://github.com/Magnusnorrby/MolecularRift GPL A3 [57]
OpenStructure http://www.openstructure.org LGPL A2 [58]
PLIP https://github.com/ssalentin/plip Apache A2 [59]
PyMOL https://sourceforge.net/projects/pymol Python A1
RasTop https://sourceforge.net/projects/rastop GPL C1
OpenRasMol https://sourceforge.net/projects/openrasmol GPL C1
SPADE http://www.spadeweb.org BSD C3 [60]
QuteMol http://qutemol.sourceforge.net GPL C1 [61]
2016年12月12日 星期一
gfortran單核跟平行
單核:
gfortran -c DPD_Main.f90 DPD_module.f90 SANS_module.f90 agg_module.f90 angle_module.f90 bond_module.f90 driver_module.f90 nemetic_module.f90 random_module.f90 shear_module.f90 system_module.f90
gfortran -o executable random_module.f90 system_module.f90 DPD_module.f90 bond_module.f90 angle_module.f90 SANS_module.f90 nemetic_module.f90 shear_module.f90 agg_module.f90 driver_module.f90 DPD_Main.f90
平行:
gfortran -c -fopenmp DPD_Main.f90 DPD_module.f90 SANS_module.f90 agg_module.f90 angle_module.f90 bond_module.f90 driver_module.f90 nemetic_module.f90 random_module.f90 shear_module.f90 system_module.f90
export OMP_NUM_THREADS=2
gfortran -fopenmp -o executable random_module.f90 system_module.f90 DPD_module.f90 bond_module.f90 angle_module.f90 SANS_module.f90 nemetic_module.f90 shear_module.f90 agg_module.f90 driver_module.f90 DPD_Main.f90
gfortran -c DPD_Main.f90 DPD_module.f90 SANS_module.f90 agg_module.f90 angle_module.f90 bond_module.f90 driver_module.f90 nemetic_module.f90 random_module.f90 shear_module.f90 system_module.f90
gfortran -o executable random_module.f90 system_module.f90 DPD_module.f90 bond_module.f90 angle_module.f90 SANS_module.f90 nemetic_module.f90 shear_module.f90 agg_module.f90 driver_module.f90 DPD_Main.f90
平行:
gfortran -c -fopenmp DPD_Main.f90 DPD_module.f90 SANS_module.f90 agg_module.f90 angle_module.f90 bond_module.f90 driver_module.f90 nemetic_module.f90 random_module.f90 shear_module.f90 system_module.f90
export OMP_NUM_THREADS=2
gfortran -fopenmp -o executable random_module.f90 system_module.f90 DPD_module.f90 bond_module.f90 angle_module.f90 SANS_module.f90 nemetic_module.f90 shear_module.f90 agg_module.f90 driver_module.f90 DPD_Main.f90
訂閱:
文章 (Atom)