source: src/Filling/Preparators/ShapeVolumeFillerPreparator.hpp@ 70f2a1

Action_Thermostats Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph Fix_Verbose_Codepatterns ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters Recreated_GuiChecks StoppableMakroAction TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps
Last change on this file since 70f2a1 was 6801f4, checked in by Frederik Heber <heber@…>, 10 years ago

Added FillVolumeAction for filling a Shape's volume.

  • added ShapeFillerPreparator for preparing the volume filler.
  • FIX: MeshAdaptor should include Mesh.hpp.
  • added regression tests for FillVolume for all present shapes.
  • all but cylinder fail because of missing implementation, are marked as XFAIL for the moment, except everywhere and nowhere of FillVolume which say they fail explicitly. (this is not an implementation problem, for these shapes filling makes no sense.) We explicitly check for the currently failing shape types and let the Action fail (cause this works also in disable-debug).
  • Property mode set to 100644
File size: 774 bytes
Line 
1/*
2 * ShapeVolumeFillerPreparator.hpp
3 *
4 * Created on: Sep 3, 2014
5 * Author: heber
6 */
7
8#ifndef SHAPEVOLUMEFILLERPREPARATOR_HPP_
9#define SHAPEVOLUMEFILLERPREPARATOR_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include "BaseFillerPreparator.hpp"
17
18class Shape;
19
20/** ShapeVolumeFillerPreparator takes a shape and uses Shape::getHomogeneousPointsInVolume()
21 * to create a specific number of nodes inside this Shape for filling.
22 *
23 */
24class ShapeVolumeFillerPreparator :
25 public BaseFillerPreparator
26{
27public:
28 ShapeVolumeFillerPreparator(molecule *_filler);
29 ~ShapeVolumeFillerPreparator();
30
31 void addShapeMesh(
32 const Shape &_shape,
33 const unsigned int _nodes);
34
35};
36
37#endif /* SHAPEVOLUMEFILLERPREPARATOR_HPP_ */
Note: See TracBrowser for help on using the repository browser.