source: ThirdParty/mpqc_open/src/bin/mpqc/sample/newton.in@ 482400e

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 482400e was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[0b990d]1% Emacs should use -*- KeyVal -*- mode
2% molecule specification
3molecule<Molecule>: (
4 symmetry = c2v
5 unit = angstrom
6 { atoms geometry } = {
7 O [ 0.00000000 0.00000000 0.36937294 ]
8 H [ 0.78397590 0.00000000 -0.18468647 ]
9 H [ -0.78397590 0.00000000 -0.18468647 ]
10 }
11)
12% basis set specification
13basis<GaussianBasisSet>: (
14 name = "3-21G"
15 molecule = $:molecule
16)
17mpqc: (
18 checkpoint = no
19 savestate = no
20 restart = no
21 % molecular coordinates for optimization
22 coor<SymmMolecularCoor>: (
23 molecule = $:molecule
24 generator<IntCoorGen>: (
25 molecule = $:molecule
26 )
27 )
28 do_energy = no
29 do_gradient = no
30 % method for computing the molecule's energy
31 mole<CLHF>: (
32 molecule = $:molecule
33 basis = $:basis
34 memory = 16000000
35 coor = $..:coor
36 guess_wavefunction<CLHF>: (
37 molecule = $:molecule
38 total_charge = 0
39 basis<GaussianBasisSet>: (
40 molecule = $:molecule
41 name = "STO-3G"
42 )
43 memory = 16000000
44 )
45 hessian<FinDispMolecularHessian>: (
46 only_totally_symmetric = yes
47 eliminate_cubic_terms = no
48 checkpoint = no
49 )
50 )
51 optimize = yes
52 % optimizer object for the molecular geometry
53 opt<NewtonOpt>: (
54 print_hessian = yes
55 max_iterations = 20
56 function = $..:mole
57 convergence<MolEnergyConvergence>: (
58 cartesian = yes
59 energy = $..:..:mole
60 )
61 )
62)
Note: See TracBrowser for help on using the repository browser.