Free Electron
BroydenInertial.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __misc_BroydenInertial_h__
8 #define __misc_BroydenInertial_h__
9 
10 namespace fe
11 {
12 
13 /** Broyden time integration
14 
15  @copydoc BroydenInertial_info
16  */
18  virtual public HandlerI,
19  virtual public Config,
20  virtual public Dispatch,
21  virtual public Initialize<BroydenInertial>
22 {
23  public:
24  BroydenInertial(void);
25 virtual ~BroydenInertial(void);
26 virtual void initialize(void);
27 
28  // AS HandlerI
29 virtual void handleBind(sp<SignalerI> spSignaler,
30  sp<Layout> l_sig);
31 virtual void handle(Record &r_sig);
32 
33  // AS DispatchI
34 virtual bool call(const String &a_name, std::vector<Instance> a_argv);
35 
36  private:
37  AsParticle m_asParticle;
38  hp<SignalerI> m_hpSignaler;
39  sp<Scope> m_spScope;
40  Record r_accum;
41 };
42 
43 
44 } /* namespace */
45 
46 #endif /* __misc_BroydenInertial_h__ */
47 
Broyden time integration.
Definition: BroydenInertial.h:17
kernel
Definition: namespace.dox:3
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
Automatically reference-counted string container.
Definition: String.h:128
Reference to an instance of a Layout.
Definition: RecordSB.h:35