Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
N Body Simulation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
This server has been upgraded to GitLab release
17.10
.
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Armin Damon Riess
N Body Simulation
Commits
ba28b71a
Commit
ba28b71a
authored
2 years ago
by
Armin Damon Riess
Browse files
Options
Downloads
Patches
Plain Diff
changed dt
parent
4aa9d2bd
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
main.cpp
+3
-3
3 additions, 3 deletions
main.cpp
with
3 additions
and
3 deletions
main.cpp
+
3
−
3
View file @
ba28b71a
...
...
@@ -18,7 +18,7 @@ int main(int argc, char** argv) {
return
1
;
}
double
dt
=
0.0001
;
double
dt
=
0.000
00
1
;
unsigned
nSteps
=
200
;
nBodySim
sim
(
datafile
);
...
...
@@ -31,8 +31,8 @@ int main(int argc, char** argv) {
sim
.
runSimulation
(
dt
,
nSteps
);
auto
stop
=
std
::
chrono
::
high_resolution_clock
::
now
();
auto
duration
=
std
::
chrono
::
duration_cast
<
std
::
chrono
::
mi
cro
seconds
>
(
stop
-
start
);
std
::
cout
<<
"Computation Time: "
<<
duration
.
count
()
/
1000
000
.0
<<
" seconds"
<<
std
::
endl
;
auto
duration
=
std
::
chrono
::
duration_cast
<
std
::
chrono
::
mi
lli
seconds
>
(
stop
-
start
);
std
::
cout
<<
"Computation Time: "
<<
duration
.
count
()
/
1000.0
<<
" seconds"
<<
std
::
endl
;
}
catch
(
std
::
exception
&
e
)
{
std
::
cerr
<<
e
.
what
()
<<
std
::
endl
;
// save state of simulation
...
...
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