Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94255585
oscillateursimple.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Dec 5, 04:36
Size
585 B
Mime Type
text/x-c++
Expires
Sat, Dec 7, 04:36 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22771370
Attached To
rSYMKIT symkit
oscillateursimple.h
View Options
#ifndef OSCILLATEURSIMPLE_H
#define OSCILLATEURSIMPLE_H
#include "oscillateur.h"
#include "svector.h"
class
OscillateurSimple
:
public
Oscillateur
{
public:
OscillateurSimple
(
const
Vector
&
p
,
const
Vector
&
p_prime
,
integral_operation
op
=
NEWMARK
)
:
Oscillateur
(
p
,
p_prime
,
op
)
{}
OscillateurSimple
(
const
std
::
vector
<
double
>&
p
,
const
std
::
vector
<
double
>&
p_prime
,
integral_operation
op
=
NEWMARK
)
:
Oscillateur
(
p
,
p_prime
,
op
)
{}
//retourne le vecteur position
virtual
SVector
<
3
>
cartesiennes
()
const
=
0
;
};
#endif
// OSCILLATEURSIMPLE_H
Event Timeline
Log In to Comment