本文整理汇总了C#中Problem.H2方法的典型用法代码示例。如果您正苦于以下问题:C# Problem.H2方法的具体用法?C# Problem.H2怎么用?C# Problem.H2使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Problem
的用法示例。
在下文中一共展示了Problem.H2方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Execute
public void Execute(Dictionary<string, object> storage)
{
//storage.Add("key" + index.ToString(), "aloha");
//object value;
//storage.TryGetValue("key1", out value);
//Console.WriteLine((string)value);
//index++;
// для зміни умові задачі потрібно змінити imK,realK,EdgeRadius,ImBoundaryCondition,RealBoundaryCondition
// Для отримання розвязку на іншій кривій потрібно змінити CurveRadiusToFindSolution
double realK = 0.1;
// double outsidePointR = 1, outsidePointT = 3*Math.PI/2.0;
double outsidePointR = 0.5;
double outsidePointT = 0;
Problem prblm = new Problem(); // required to call H2 inside ImBoundaryCondition...
// функції які потрібно передати в Problem
Func<double, double> edgeRadius = (t) => {
return 1; // може бути фукція що задає радіус
//return Math.Sqrt(1 - 2*Math.Pow(Math.Sin(t),3) + Math.Pow(Math.Sin(t),4));
};
Func<double, double> imBoundaryCondition = (t) => {
//return 0;
return prblm.H2(t, outsidePointR, outsidePointT); // точка y (r = 0.5 , t (кут) = 0) належить обмеженій області D в якій ми НЕ шукаємо розвязок
};
Func<double, double> realBoundaryCondition = (t) => {
//return 5;
return prblm.H1(t, outsidePointR, outsidePointT); // точка y (r = 0.5 , t (кут) = 0) належить обмеженій області D в якій ми НЕ шукаємо розвязок
};
Console.WriteLine("Dirichlet problem for Helmholtz equation \n Enter N (N*2 = number of points):");
int N = int.Parse(Console.ReadLine());
prblm = new Problem(edgeRadius, realK, realBoundaryCondition, imBoundaryCondition); //
// If the specified key is not found, a get operation throws a
// KeyNotFoundException, and a set operation creates a new
// element with the specified key.
// https://msdn.microsoft.com/en-us/library/9tee9ht2(v=vs.110).aspx
storage["N"] = N;
storage["prblm"] = prblm;
storage["outsidePointR"] = outsidePointR;
storage["outsidePointT"] = outsidePointT;
}