This file contains hidden or 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
| #define _CRT_SECURE_NO_DEPRECATE | |
| #include <stdio.h> | |
| #include <conio.h> | |
| #include <iostream> | |
| #include <math.h> | |
| #include <time.h> | |
| #include <fftw3.h> | |
| #define M_PI 3.1415926535897932384626433832795 |
This file contains hidden or 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
| #define _CRT_SECURE_NO_DEPRECATE | |
| #include "stdio.h" | |
| #include "math.h" | |
| #include <iostream> | |
| using namespace std; | |
| /* | |
| Общие вопросы по теплопроводности: | |
| Декремент затухания и сравнить с аналитикой | |
| Построив график в момент времени t=0 и t=1 сравним, во сколько раз он "упал" вниз. Получится около 8-9 раз. В соответствие с аналитическим |
This file contains hidden or 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
| #define _CRT_SECURE_NO_DEPRECATE | |
| #include "stdio.h" | |
| #include "math.h" | |
| #include <iostream> | |
| using namespace std; | |
| double t = 0.006; | |
| double h = 0.1; | |
| double a = 0.0; |
This file contains hidden or 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
| #define _CRT_SECURE_NO_DEPRECATE | |
| #include "stdio.h" | |
| #include "math.h" | |
| #include <iostream> | |
| using namespace std; | |
| double t = 0.0001; | |
| double h = 0.03; |
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Linq.Expressions; | |
| using System.Diagnostics; | |
| namespace SquareRoot | |
| { |
This file contains hidden or 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
| #include <iostream> | |
| #include <cmath> | |
| #include <stdio.h> | |
| using namespace std; | |
| double curtime; | |
| int size; | |
| double eps = 1.0; | |
| double k = 0.001; | |
| double dt = 0.1; |
This file contains hidden or 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
| #include <iostream> | |
| #include <cmath> | |
| #include <stdio.h> | |
| using namespace std; | |
| int main() | |
| { | |
| FILE * file_n = fopen("file_n.txt","w"); |
This file contains hidden or 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
| #define _USE_MATH_DEFINES | |
| #include <iostream> | |
| #include <iomanip> | |
| #include <cmath> | |
| #include <stdio.h> | |
| #include <complex> // std::complex, std::abs | |
| #include <cstdlib> | |
| #include <ctime> | |
| using namespace std; |
This file contains hidden or 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
| #include <mpi.h> | |
| #include <cmath> | |
| #include "laser_field.h" | |
| #include "g_index.h" | |
| #include "g_gas.h" | |
| #include "conf.h" | |
| #include "Paralleler/paral_parent.h" | |
| #include "g_mesh.h" | |
| #include "g_flow.h" | |
| #include "g_unsteady.h" |
This file contains hidden or 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
| #define _USE_MATH_DEFINES | |
| #include <iostream> | |
| #include <iomanip> | |
| #include <cmath> | |
| #include <stdio.h> | |
| #include <complex> // std::complex, std::abs | |
| #include <cstdlib> | |
| #include <ctime> | |
| #include <string> | |
| #include <sstream> |