Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rotagaporp-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ivan Kondov
rotagaporp-c
Commits
7f1bf9d0
Commit
7f1bf9d0
authored
5 years ago
by
Ivan Kondov
Browse files
Options
Downloads
Patches
Plain Diff
added lambdify and theano to MPLPQP class
parent
264bcb4d
No related branches found
No related tags found
1 merge request
!1
Symmetric propagators
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
rotagaporp/mpliouville.py
+36
-4
36 additions, 4 deletions
rotagaporp/mpliouville.py
tests/mp_tests.py
+2
-0
2 additions, 0 deletions
tests/mp_tests.py
with
38 additions
and
4 deletions
rotagaporp/mpliouville.py
+
36
−
4
View file @
7f1bf9d0
...
...
@@ -201,20 +201,52 @@ class MPLPQP:
self
.
numeric
=
numeric
elif
hasattr
(
system
,
'
numeric
'
):
self
.
numeric
=
system
.
numeric
assert
self
.
numeric
[
'
tool
'
]
==
'
subs
'
self
.
ilnqobj
=
MPLP
(
nterms
,
system
.
hamiltonian
,
system
.
q
,
system
.
p
,
function
=
system
.
q
,
**
kwargs
)
self
.
ilnpobj
=
MPLP
(
nterms
,
system
.
hamiltonian
,
system
.
q
,
system
.
p
,
function
=
system
.
p
,
**
kwargs
)
self
.
ilnqexpr
=
self
.
ilnqobj
.
Lf
self
.
ilnpexpr
=
self
.
ilnpobj
.
Lf
self
.
ilnqcart
=
self
.
ilnqobj
.
Lf
self
.
ilnpcart
=
self
.
ilnpobj
.
Lf
self
.
set_eval_func
((
*
system
.
q
,
*
system
.
p
))
def
get_val_float
(
self
,
qval
,
pval
):
def
set_eval_func
(
self
,
symbs
):
"""
compile functions to evaluate expressions numerically
"""
if
self
.
numeric
[
'
tool
'
]
==
'
subs
'
:
self
.
get_val_float
=
self
.
get_val_subs
elif
self
.
numeric
[
'
tool
'
]
==
'
lambdify
'
:
backend
=
self
.
numeric
[
'
modules
'
]
self
.
ilnqtf
=
[
lambdify
(
symbs
,
i
,
backend
)
for
i
in
self
.
ilnqcart
]
self
.
ilnptf
=
[
lambdify
(
symbs
,
i
,
backend
)
for
i
in
self
.
ilnpcart
]
self
.
get_val_float
=
self
.
get_val_lambdify
elif
self
.
numeric
[
'
tool
'
]
==
'
theano
'
:
from
sympy.printing.theanocode
import
theano_function
as
tf
tf_params
=
{
'
on_unused_input
'
:
'
ignore
'
}
self
.
ilnqtf
=
[
tf
(
symbs
,
i
,
**
tf_params
)
for
i
in
self
.
ilnqcart
]
self
.
ilnptf
=
[
tf
(
symbs
,
i
,
**
tf_params
)
for
i
in
self
.
ilnpcart
]
self
.
get_val_float
=
self
.
get_val_theano
else
:
raise
ValueError
(
'
not supported numeric:
'
+
self
.
numeric
[
'
tool
'
])
def
get_val_subs
(
self
,
qval
,
pval
):
"""
evaluates (iL)^n q and (iL)^n p for given values of q and p
"""
qvec
=
self
.
ilnqobj
.
get_val_float
(
qval
,
pval
)
pvec
=
self
.
ilnpobj
.
get_val_float
(
qval
,
pval
)
return
(
qvec
,
pvec
)
def
get_val_lambdify
(
self
,
qval
,
pval
):
"""
evaluates (iL)^n q and (iL)^n p for given values of q and p
"""
replvec
=
(
*
qval
,
*
pval
)
ilnqtv
=
[
tf
(
replvec
)
for
tf
in
self
.
ilnqtf
]
ilnptv
=
[
tf
(
replvec
)
for
tf
in
self
.
ilnptf
]
return
(
ilnqtv
,
ilnptv
)
def
get_val_theano
(
self
,
qval
,
pval
):
"""
evaluates (iL)^n q and (iL)^n p for given values of q and p
"""
ilnqtv
=
[
tf
(
*
qval
,
*
pval
)
for
tf
in
self
.
ilnqtf
]
ilnptv
=
[
tf
(
*
qval
,
*
pval
)
for
tf
in
self
.
ilnptf
]
return
(
ilnqtv
,
ilnptv
)
class
MPLPAQ
(
MPLP
):
"""
assume H(Q, P) = V(Q) + T(P) and functions Q and P. The iL^n f
...
...
This diff is collapsed.
Click to expand it.
tests/mp_tests.py
+
2
−
0
View file @
7f1bf9d0
...
...
@@ -56,6 +56,8 @@ class MPLPTest(unittest.TestCase):
cases
=
(
(
MPLPQP
,
None
,
{
'
tool
'
:
'
subs
'
}),
(
MPLPQP
,
None
,
{
'
tool
'
:
'
theano
'
}),
(
MPLPQP
,
None
,
{
'
tool
'
:
'
lambdify
'
,
'
modules
'
:
'
math
'
}),
(
MPLPAQ
,
None
,
{
'
tool
'
:
'
subs
'
}),
(
MPLPAQ
,
None
,
{
'
tool
'
:
'
theano
'
}),
(
MPLPAQ
,
None
,
{
'
tool
'
:
'
lambdify
'
,
'
modules
'
:
'
math
'
}),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment