-
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.
expanded to a three-dimensional area
- Loading branch information
1 parent
a70a061
commit 315204b
Showing
19 changed files
with
1,940 additions
and
1,019 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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.
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.
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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
16.0 | ||
16.0 | ||
4.0 | ||
4.0 | ||
4.0 | ||
0.0 | ||
1.0 | ||
0.0 | ||
1.0 | ||
16.0 | ||
0.0 | ||
1.0 | ||
4.0 | ||
5e-13 |
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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
16.0 | ||
16.0 | ||
16.0 | ||
0.0 | ||
1.0 | ||
0.0 | ||
1.0 | ||
0.0 | ||
|
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
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
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,32 @@ | ||
#pragma once | ||
|
||
#include "FDTD.h" | ||
|
||
struct SelectedFields { | ||
Component selected_1; | ||
Component selected_2; | ||
Component calculated; | ||
}; | ||
|
||
struct Parameters { | ||
double ax; | ||
double bx; | ||
|
||
double ay; | ||
double by; | ||
|
||
double az; | ||
double bz; | ||
|
||
double dx; | ||
double dy; | ||
double dz; | ||
|
||
double time; | ||
int iterations; | ||
}; | ||
|
||
struct Functions { | ||
std::function<double(double, double[2])>* init_function = nullptr; | ||
std::function<double(double, double, double[2])>* true_function = nullptr; | ||
}; |
Oops, something went wrong.