Changeset 919c8a for src/Potentials


Ignore:
Timestamp:
Jul 8, 2013, 2:22:02 PM (12 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
065a16
Parents:
1e565c
git-author:
Frederik Heber <heber@…> (05/09/13 13:40:51)
git-committer:
Frederik Heber <heber@…> (07/08/13 14:22:02)
Message:

Removed energy_offset from PairPotential_Morse.

Location:
src/Potentials/Specifics
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Potentials/Specifics/PairPotential_Morse.cpp

    r1e565c r919c8a  
    6161      ("equilibrium_distance")
    6262      ("dissociation_energy")
    63       ("") //energy_offset
    6463    ;
    6564const std::string PairPotential_Morse::potential_token("morse");
     
    7574  params[equilibrium_distance] = 1.;
    7675  params[dissociation_energy] = 0.1;
    77   params[energy_offset] = 0.;
    7876}
    7977
     
    8280    const double _spring_constant,
    8381    const double _equilibrium_distance,
    84     const double _dissociation_energy,
    85     const double _energy_offset) :
     82    const double _dissociation_energy) :
    8683  EmpiricalPotential(_ParticleTypes),
    8784  params(parameters_t(MAXPARAMS, 0.))
     
    9087  params[equilibrium_distance] = _equilibrium_distance;
    9188  params[dissociation_energy] = _dissociation_energy;
    92   params[energy_offset] = _energy_offset;
    9389}
    9490
     
    125121  const result_t result =
    126122      params[dissociation_energy] * Helpers::pow( 1.
    127           - exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance])),2)
    128             + params[energy_offset];
     123          - exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance])),2);
    129124  return std::vector<result_t>(1, result);
    130125}
     
    198193      break;
    199194    }
    200     case energy_offset:
    201     {
    202       // Maple result: 1
    203       const result_t result = +1.;
    204       return std::vector<result_t>(1, result);
    205       break;
    206     }
    207195    default:
     196      ASSERT(0, "PairPotential_Morse::parameter_derivative() - derivative to unknown parameter desired.");
    208197      break;
    209198  }
     
    232221{
    233222  params[PairPotential_Morse::dissociation_energy] = 1e+0*rand()/(double)RAND_MAX;// 0.5;
    234   params[PairPotential_Morse::energy_offset] =
    235       data.getTrainingOutputAverage()[0];// -1.;
    236223  params[PairPotential_Morse::spring_constant] = 1e+0*rand()/(double)RAND_MAX;// 1.;
    237224  params[PairPotential_Morse::equilibrium_distance] =  3e+0*rand()/(double)RAND_MAX;//2.9;
  • src/Potentials/Specifics/PairPotential_Morse.hpp

    r1e565c r919c8a  
    4343      const double _spring_constant,
    4444      const double _equilibrium_distance,
    45       const double _dissociation_energy,
    46       const double _energy_offset);
     45      const double _dissociation_energy);
    4746  virtual ~PairPotential_Morse() {}
    4847
     
    7473  size_t getParameterDimension() const
    7574  {
    76     return 4;
     75    return MAXPARAMS;
    7776  }
    7877
     
    157156    equilibrium_distance=1,
    158157    dissociation_energy=2,
    159     energy_offset=3,
    160158    MAXPARAMS
    161159  };
  • src/Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp

    r1e565c r919c8a  
    6666  ASSERT_DO(Assert::Throw);
    6767
    68   // data is taken from gnuplot via set table "morse.dat" with
     68  // data is taken from gnuplot via
    6969  // g(x)=D*(1- exp(-a*(x-c)))**2+d
     70  // set table "morse.dat"
     71  // plot [1.89012:4.46595] g(x)
    7072  a = 0.897888;
    7173  c = 2.92953;
     
    8486      4.46595;
    8587  output +=
    86       -78.5211,
    87       -78.8049,
    88       -78.935,
    89       -78.9822,
    90       -78.9867,
    91       -78.971,
    92       -78.9475,
    93       -78.9225,
    94       -78.899,
    95       -78.8784;
     88                        0.467226,
     89                        0.183388,
     90                        0.0532649,
     91                        0.00609808,
     92                        0.00160056,
     93                        0.0172506,
     94                        0.0407952,
     95                        0.0658475,
     96                        0.0893157,
     97                        0.109914;
    9698
    9799  CPPUNIT_ASSERT_EQUAL( input.size(), output.size() );
     
    111113        (0)(1)
    112114      ;
    113   PairPotential_Morse Morse(types, a,c,D,d);
     115  PairPotential_Morse Morse(types, a,c,D);
    114116  for (size_t index = 0; index < input.size(); ++index) {
    115117    argument_t arg(argument_t::indices_t(0,1), argument_t::types_t(0,1), input[index]);
     
    132134        (0)(1)
    133135      ;
    134   PairPotential_Morse Morse(types, a,c,D,d);
     136  PairPotential_Morse Morse(types, a,c,D);
    135137  argument_t arg(argument_t::indices_t(0,1), argument_t::types_t(0,1), c);
    136138  CPPUNIT_ASSERT(
     
    154156        (0)(1)
    155157      ;
    156   PairPotential_Morse Morse(types, a,c,D,d);
     158  PairPotential_Morse Morse(types, a,c,D);
    157159  argument_t arg(argument_t::indices_t(0,1), argument_t::types_t(0,1), c);
    158160  CPPUNIT_ASSERT(
     
    186188      )
    187189  );
    188   CPPUNIT_ASSERT(
    189       Helpers::isEqual(
    190           1.,
    191           Morse.parameter_derivative(
    192               FunctionModel::arguments_t(1,arg),
    193               3
    194           )[0],
    195           1.e+6
    196       )
    197   );
    198190}
Note: See TracChangeset for help on using the changeset viewer.