-
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.
Merge pull request #4 from Amazingkivas/new_branch
Some fixes
- Loading branch information
Showing
24 changed files
with
4,333 additions
and
1,140 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
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 @@ | ||
8.0 | ||
32.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 | ||
|
||
namespace FDTDstruct | ||
{ | ||
enum class Component { EX, EY, EZ, BX, BY, BZ }; | ||
|
||
enum class Axis { X, Y, Z }; | ||
|
||
struct SelectedFields { | ||
Component selected_E; | ||
Component selected_B; | ||
}; | ||
|
||
struct Parameters { | ||
int Ni; | ||
int Nj; | ||
int Nk; | ||
|
||
double ax; | ||
double bx; | ||
|
||
double ay; | ||
double by; | ||
|
||
double az; | ||
double bz; | ||
|
||
double dx = (bx - ax) / static_cast<double>(Ni); | ||
double dy = (by - ay) / static_cast<double>(Nj); | ||
double dz = (bz - az) / static_cast<double>(Nk); | ||
}; | ||
} |
Oops, something went wrong.