Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121614627
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
Sat, Jul 12, 11:40
Size
585 B
Mime Type
text/x-c++
Expires
Mon, Jul 14, 11:40 (2 d)
Engine
blob
Format
Raw Data
Handle
27359007
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