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
#define _CRT_SECURE_NO_DEPRECATE | |
#include "stdio.h" | |
#include "math.h" | |
#include "conio.h" | |
#include <iostream> | |
int a = 10; | |
int b = 2; | |
int c = 2; | |
int d = 10; |
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
#define _CRT_SECURE_NO_DEPRECATE | |
#include "stdio.h" | |
#include "math.h" | |
#include "conio.h" | |
#include <iostream> | |
double step = 0.1; | |
double function(double t, double x) | |
{ |
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
#define _CRT_SECURE_NO_DEPRECATE | |
#include "stdio.h" | |
#include "math.h" | |
#include "conio.h" | |
#include <iostream> | |
int a = 10; | |
int b = 2; | |
int c = 2; | |
int d = 10; |
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
#define _CRT_SECURE_NO_DEPRECATE | |
#include "stdio.h" | |
#include "math.h" | |
#include <iostream> | |
using namespace std; | |
int a = 998; | |
int b = 1998; | |
int c = -999; | |
int d = -1999; |
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
#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 | |
double alph = 0.4; |
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
#define _CRT_SECURE_NO_DEPRECATE | |
#include "stdio.h" | |
#include "math.h" | |
#include <iostream> | |
using namespace std; | |
double lambda = 1.0; //Коэффициент теплопроводности | |
double t = 0.006; | |
double h = 0.1; |
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
#define _CRT_SECURE_NO_DEPRECATE | |
#include "stdio.h" | |
#include "math.h" | |
#include <iostream> | |
using namespace std; | |
/* | |
Общие вопросы по теплопроводности: | |
Устойчивость для явной схемы и показать развал | |
Декремент затухания и сравнить с аналитикой |
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
#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 | |
double alph = 0.45; |
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
#define _CRT_SECURE_NO_DEPRECATE | |
#include "stdio.h" | |
#include "math.h" | |
#include <iostream> | |
using namespace std; | |
double t = 0.001; | |
double h = 0.1; |
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
#define _CRT_SECURE_NO_DEPRECATE | |
#include "stdio.h" | |
#include "math.h" | |
#include <iostream> | |
using namespace std; | |
double t = 0.0001; | |
double h = 0.1; |
OlderNewer