Changeset 844cf5
- Timestamp:
- Aug 17, 2009, 10:29:03 AM (16 years ago)
- Children:
- eb58a7
- Parents:
- d6d226d
- File:
-
- 1 edited
-
molecuilder/src/builder.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/builder.cpp
rd6d226d r844cf5 1350 1350 cout << "\t-B xx xy xz yy yz zz\tBound atoms by domain with given symmetric matrix of (xx,xy,xz,yy,yz,zz)." << endl; 1351 1351 cout << "\t-c x1 x2 x3\tCenter atoms in domain with a minimum distance to boundary of (x1,x2,x3)." << endl; 1352 cout << "\t-d x1 x2 x3\tDuplicate cell along each axis by given factor." << endl; 1352 1353 cout << "\t-D <bond distance>\tDepth-First-Search Analysis of the molecule, giving cycles and tree/back edges." << endl; 1353 cout << "\t-O\tCenter atoms in origin." << endl;1354 cout << "\t-d x1 x2 x3\tDuplicate cell along each axis by given factor." << endl;1355 1354 cout << "\t-e <file>\tSets the databases path to be parsed (default: ./)." << endl; 1356 1355 cout << "\t-E <id> <Z>\tChange atom <id>'s element to <Z>, <id> begins at 0." << endl; 1357 1356 cout << "\t-f/F <dist> <order>\tFragments the molecule in BOSSANOVA manner (with/out rings compressed) and stores config files in same dir as config (return code 0 - fragmented, 2 - no fragmentation necessary)." << endl; 1358 1357 cout << "\t-h/-H/-?\tGive this help screen." << endl; 1358 cout << "\t-L <step0> <step1> <prefix>\tStore a linear interpolation between two configurations <step0> and <step1> into single config files with prefix <prefix> and as Trajectories into the current config file." << endl; 1359 1359 cout << "\t-m <0/1>\tCalculate (0)/ Align in(1) PAS with greatest EV along z axis." << endl; 1360 1360 cout << "\t-M <basis>\tSetting basis to store to MPQC config files." << endl; … … 1362 1362 cout << "\t-N <radius> <file>\tGet non-convex-envelope." << endl; 1363 1363 cout << "\t-o <out>\tGet volume of the convex envelope (and store to tecplot file)." << endl; 1364 cout << "\t-O\tCenter atoms in origin." << endl; 1364 1365 cout << "\t-p <file>\tParse given xyz file and create raw config file from it." << endl; 1365 1366 cout << "\t-P <file>\tParse given forces file and append as an MD step to config file via Verlet." << endl; 1366 cout << "\t-L <step0> <step1> <prefix>\tStore a linear interpolation between two configurations <step0> and <step1> into single config files with prefix <prefix> and as Trajectories into the current config file." << endl;1367 1367 cout << "\t-r\t\tConvert file from an old pcp syntax." << endl; 1368 1368 cout << "\t-R\t\tRemove all atoms out of sphere around a given one." << endl; 1369 cout << "\t-s x1 x2 x3\tScale all atom coordinates by this vector (x1,x2,x3)." << endl; 1370 cout << "\t-S <file> Store temperatures from the config file in <file>." << endl; 1369 1371 cout << "\t-t x1 x2 x3\tTranslate all atoms by this vector (x1,x2,x3)." << endl; 1370 1372 cout << "\t-T x1 x2 x3\tTranslate periodically all atoms by this vector (x1,x2,x3)." << endl; 1371 cout << "\t-S <file> Store temperatures from the config file in <file>." << endl;1372 cout << "\t-s x1 x2 x3\tScale all atom coordinates by this vector (x1,x2,x3)." << endl;1373 1373 cout << "\t-u rho\tsuspend in water solution and output necessary cell lengths, average density rho and repetition." << endl; 1374 1374 cout << "\t-v/-V\t\tGives version information." << endl; … … 1874 1874 Find_non_convex_border((ofstream *)&cout, mol, &LCList, argv[argptr], 10.); 1875 1875 1876 double volumedifference = ConvexizeNonconvexEnvelope((ofstream *)&cout, mol->TesselStruct);1876 double volumedifference = ConvexizeNonconvexEnvelope((ofstream *)&cout, mol->TesselStruct, mol, argv[argptr]); 1877 1877 double clustervolume = VolumeOfConvexEnvelope((ofstream *)&cout, mol->TesselStruct, &configuration); 1878 cout << Verbose(0) << "The tesselated surface area is " << clustervolume << " " << (configuration.GetIsAngstroem() ? "angstrom" : "atomiclength") << "^3." << endl;1879 cout << Verbose(0) << "The non-convex tesselated surface area is " << clustervolume-volumedifference << " " << (configuration.GetIsAngstroem() ? "angstrom" : "atomiclength") << "^3." << endl;1878 cout << Verbose(0) << "The tesselated volume area is " << clustervolume << " " << (configuration.GetIsAngstroem() ? "angstrom" : "atomiclength") << "^3." << endl; 1879 cout << Verbose(0) << "The non-convex tesselated volume area is " << clustervolume-volumedifference << " " << (configuration.GetIsAngstroem() ? "angstrom" : "atomiclength") << "^3." << endl; 1880 1880 argptr+=1; 1881 1881 }
Note:
See TracChangeset
for help on using the changeset viewer.
