-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
676 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
76337e2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!doctype html> | ||
<html lang="en-us"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" type="image/png" href="favicon.png" /> | ||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>ODIL Advection</title> | ||
<link rel="stylesheet" href="view.css" /> | ||
</head> | ||
<body> | ||
<noscript> | ||
<div> | ||
This demo needs JavaScript. | ||
</div> | ||
</noscript> | ||
|
||
<div id="content_column"> | ||
<div class="row"> | ||
<a class="github-button" href="https://github.com/pkarnakov/autodiff" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star pkarnakov/autodiff on GitHub">Star</a> | ||
<a href="poisson.html" class="demo">Poisson</a> | ||
<a href="wave.html" class="demo">Wave</a> | ||
<a href="heat.html" class="demo">Heat</a> | ||
<a href="advection.html" class="demo current">Adv</a> | ||
</div> | ||
<div class="row"> | ||
<canvas id="canvas" tabindex=-1></canvas> | ||
</div> | ||
<div class="row" style="position: relative;"> | ||
<input type="button" title="space" class="button" id="button_pause" value="pause" onclick="togglePause();"> | ||
<input type="button" title='r' class="button" id="button_restart" value="restart" onclick="pressButton('r')"> | ||
<img src="axes_xt.svg" class="axes" /> | ||
</div> | ||
<div class="row"> | ||
<span class="kbdspan"><kbd>click</kbd> draw reference solution,</span> | ||
<span class="kbdspan"><kbd>space</kbd> toggle pause,</span> | ||
<span class="kbdspan"><kbd>r</kbd> restart</span> | ||
</div> | ||
<div class="row" id="text_status"></div> | ||
</div> | ||
|
||
<script async defer src="libs/buttons.js"></script> | ||
<script src="view.js"></script> | ||
<script async src="advection.js"></script> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!doctype html> | ||
<html lang="en-us"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" type="image/png" href="favicon.png" /> | ||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>ODIL Heat</title> | ||
<link rel="stylesheet" href="view.css" /> | ||
</head> | ||
<body> | ||
<noscript> | ||
<div> | ||
This demo needs JavaScript. | ||
</div> | ||
</noscript> | ||
|
||
<div id="content_column"> | ||
<div class="toprow"> | ||
<a class="github-button" href="https://github.com/pkarnakov/autodiff" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star pkarnakov/autodiff on GitHub">Star</a> | ||
<a href="poisson.html" class="demo">Poisson</a> | ||
<a href="wave.html" class="demo">Wave</a> | ||
<a href="heat.html" class="demo current">Heat</a> | ||
<a href="advection.html" class="demo">Adv</a> | ||
</div> | ||
<div class="row"> | ||
<canvas id="canvas" tabindex=-1></canvas> | ||
</div> | ||
<div class="row" style="position: relative;"> | ||
<input type="button" title="space" class="button" id="button_pause" value="pause" onclick="togglePause();"> | ||
<input type="button" title='r' class="button" id="button_restart" value="restart" onclick="pressButton('r')"> | ||
<img src="axes_xt.svg" class="axes" /> | ||
</div> | ||
<div class="row"> | ||
<span class="kbdspan"><kbd>click</kbd> draw mask to impose exact solution,</span> | ||
<span class="kbdspan"><kbd>space</kbd> toggle pause,</span> | ||
<span class="kbdspan"><kbd>r</kbd> restart</span> | ||
</div> | ||
<div class="row" id="text_status"></div> | ||
</div> | ||
|
||
<script async defer src="libs/buttons.js"></script> | ||
<script src="view.js"></script> | ||
<script async src="heat.js"></script> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="refresh" content="0; url=wave.html"/> | ||
</head> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!doctype html> | ||
<html lang="en-us"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" type="image/png" href="favicon.png" /> | ||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>ODIL Poisson</title> | ||
<link rel="stylesheet" href="view.css" /> | ||
</head> | ||
<body> | ||
<noscript> | ||
<div> | ||
This demo needs JavaScript. | ||
</div> | ||
</noscript> | ||
|
||
<div id="content_column"> | ||
<div class="rowtop"> | ||
<a class="github-button" href="https://github.com/pkarnakov/autodiff" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star pkarnakov/autodiff on GitHub">Star</a> | ||
<a href="poisson.html" class="demo current">Poisson</a> | ||
<a href="wave.html" class="demo">Wave</a> | ||
<a href="heat.html" class="demo">Heat</a> | ||
<a href="advection.html" class="demo">Adv</a> | ||
</div> | ||
<div class="row"> | ||
<canvas id="canvas" tabindex=-1></canvas> | ||
</div> | ||
<div class="row"> | ||
<input type="button" title="space" class="button" id="button_pause" value="pause" onclick="togglePause();"> | ||
<input type="button" title='r' class="button" id="button_restart" value="restart" onclick="pressButton('r')"> | ||
</div> | ||
<div class="row"> | ||
<span class="kbdspan"><kbd>click</kbd> draw mask to impose zero solution,</span> | ||
<span class="kbdspan"><kbd>space</kbd> toggle pause,</span> | ||
<span class="kbdspan"><kbd>r</kbd> restart</span> | ||
</div> | ||
<div class="row" id="text_status"></div> | ||
</div> | ||
|
||
<script async defer src="libs/buttons.js"></script> | ||
<script src="view.js"></script> | ||
<script async src="poisson.js"></script> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.