Changeset 70c4567 for molecuilder/src/builder.cpp
- Timestamp:
- Aug 10, 2009, 4:11:47 PM (16 years ago)
- Children:
- ada6d2
- Parents:
- 0cf171
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/builder.cpp
r0cf171 r70c4567 1871 1871 cout << Verbose(1) << "Storing tecplot data in " << argv[argptr] << "." << endl; 1872 1872 LinkedCell LCList(mol, 10.); 1873 class Tesselation *TesselStruct = NULL; 1874 Find_convex_border((ofstream *)&cout, mol, &LCList, argv[argptr]); 1875 double clustervolume = VolumeOfConvexEnvelope((ofstream *)&cout, TesselStruct, &configuration); 1876 cout << Verbose(0) << "The tesselated surface area is " << clustervolume << "." << endl; 1877 delete(TesselStruct); 1873 //Find_convex_border((ofstream *)&cout, mol, &LCList, argv[argptr]); 1874 Find_non_convex_border((ofstream *)&cout, mol, &LCList, argv[argptr], 10.); 1875 1876 double volumedifference = ConvexizeNonconvexEnvelope((ofstream *)&cout, mol->TesselStruct); 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 1880 argptr+=1; 1879 1881 }
Note:
See TracChangeset
for help on using the changeset viewer.