Free Electron
TireISystem.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 __tire_TireISystem_h__
8 #define __tire_TireISystem_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /// @brief TireI Model System
16 class FE_DL_EXPORT TireISystem :
17  virtual public Stepper,
18  public Initialize<TireISystem>
19 {
20  public:
21  TireISystem(void);
22 virtual ~TireISystem(void);
23  void initialize(void);
24 
25 virtual void compile(const t_note_id &a_note_id);
26 virtual void step(t_moa_real a_dt);
27 virtual void connectOrchestrator(sp<OrchestratorI> a_spOrchestrator);
28 
29  private:
30  sp<Scope> m_spScope;
31  std::vector< Record > m_r_tires;
32  AsTireLive m_asTireLive;
33  AsContactLive m_asContactLive;
34 };
35 
36 } /* namespace ext */
37 } /* namespace fe */
38 
39 #endif /* __tire_TireISystem_h__ */
40 
kernel
Definition: namespace.dox:3
Time Stepping System.
Definition: Stepper.h:15
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
Run Time Single Contact Tire Model.
Definition: tireAS.h:49
TireI Model System.
Definition: TireISystem.h:16
Intrusive Smart Pointer.
Definition: src/core/ptr.h:53