-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathNumericalHUB.vfproj
144 lines (144 loc) · 11.5 KB
/
NumericalHUB.vfproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?xml version="1.0" encoding="UTF-8"?>
<VisualStudioProject ProjectCreator="Intel Fortran" Keyword="Console Application" Version="11.0" ProjectIdGuid="{53A25159-4B77-4EB1-A964-CE9EA48D414E}">
<Platforms>
<Platform Name="Win32"/>
<Platform Name="x64"/></Platforms>
<Configurations>
<Configuration Name="Debug|Win32">
<Tool Name="VFFortranCompilerTool" AdditionalOptions="/heap-arrays" SuppressStartupBanner="true" DebugInformationFormat="debugEnabled" Optimization="optimizeDisabled" WarnInterfaces="true" RealKIND="realKIND8" Traceback="true" BoundsCheck="true" StackFrameCheck="true"/>
<Tool Name="VFLinkerTool" LinkIncremental="linkIncrementalNo" SuppressStartupBanner="true" GenerateDebugInformation="true" SubSystem="subSystemConsole" AdditionalDependencies="user32.lib gdi32.lib"/>
<Tool Name="VFResourceCompilerTool"/>
<Tool Name="VFMidlTool" SuppressStartupBanner="true"/>
<Tool Name="VFCustomBuildTool"/>
<Tool Name="VFPreLinkEventTool"/>
<Tool Name="VFPreBuildEventTool"/>
<Tool Name="VFPostBuildEventTool"/>
<Tool Name="VFManifestTool" SuppressStartupBanner="true"/></Configuration>
<Configuration Name="Release|Win32">
<Tool Name="VFFortranCompilerTool" AdditionalOptions="/heap-arrays" SuppressStartupBanner="true" RealKIND="realKIND8"/>
<Tool Name="VFLinkerTool" AdditionalOptions="/STACK:100000000" LinkIncremental="linkIncrementalNo" SuppressStartupBanner="true" SubSystem="subSystemConsole" AdditionalDependencies="user32.lib gdi32.lib"/>
<Tool Name="VFResourceCompilerTool"/>
<Tool Name="VFMidlTool" SuppressStartupBanner="true"/>
<Tool Name="VFCustomBuildTool"/>
<Tool Name="VFPreLinkEventTool"/>
<Tool Name="VFPreBuildEventTool"/>
<Tool Name="VFPostBuildEventTool"/>
<Tool Name="VFManifestTool" SuppressStartupBanner="true"/></Configuration>
<Configuration Name="Debug|x64">
<Tool Name="VFFortranCompilerTool" AdditionalOptions="/heap-arrays" SuppressStartupBanner="true" DebugInformationFormat="debugEnabled" Optimization="optimizeDisabled" HeapArrays="0" WarnInterfaces="true" RealKIND="realKIND8" Traceback="true" BoundsCheck="true" StackFrameCheck="true"/>
<Tool Name="VFLinkerTool" AdditionalOptions="/STACK:100000000" LinkIncremental="linkIncrementalNo" SuppressStartupBanner="true" GenerateDebugInformation="true" SubSystem="subSystemConsole" AdditionalDependencies="user32.lib gdi32.lib"/>
<Tool Name="VFResourceCompilerTool"/>
<Tool Name="VFMidlTool" SuppressStartupBanner="true" TargetEnvironment="midlTargetAMD64"/>
<Tool Name="VFCustomBuildTool"/>
<Tool Name="VFPreLinkEventTool"/>
<Tool Name="VFPreBuildEventTool"/>
<Tool Name="VFPostBuildEventTool"/>
<Tool Name="VFManifestTool" SuppressStartupBanner="true"/></Configuration>
<Configuration Name="Release|x64">
<Tool Name="VFFortranCompilerTool" SuppressStartupBanner="true" RealKIND="realKIND8"/>
<Tool Name="VFLinkerTool" AdditionalOptions="/STACK:10000000000" LinkIncremental="linkIncrementalNo" SuppressStartupBanner="true" SubSystem="subSystemConsole" AdditionalDependencies="user32.lib gdi32.lib"/>
<Tool Name="VFResourceCompilerTool"/>
<Tool Name="VFMidlTool" SuppressStartupBanner="true" TargetEnvironment="midlTargetAMD64"/>
<Tool Name="VFCustomBuildTool"/>
<Tool Name="VFPreLinkEventTool"/>
<Tool Name="VFPreBuildEventTool"/>
<Tool Name="VFPostBuildEventTool"/>
<Tool Name="VFManifestTool" SuppressStartupBanner="true"/></Configuration></Configurations>
<Files>
<Filter Name="Resource Files" Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"/>
<Filter Name="Source Files" Filter="f90;for;f;fpp;ftn;def;odl;idl">
<Filter Name="Boundary value problem">
<Filter Name="examples">
<File RelativePath=".\sources\Numerical_Methods\Boundary_Value_Problem\examples\API_Example_Boundary_Value_Problem.f90"/></Filter>
<File RelativePath=".\sources\Numerical_Methods\Boundary_Value_Problem\sources\Boundary_value_problems.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Boundary_Value_Problem\sources\Boundary_value_problems1D.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Boundary_Value_Problem\sources\Boundary_value_problems2D.f90"/></Filter>
<Filter Name="Cauchy Problem">
<Filter Name="Examples">
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\examples\API_Example_Cauchy_Problem.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\examples\MUSE_orbits.f90"/></Filter>
<Filter Name="High_order">
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\High_order\Adams_Bashforth_Moulton.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\High_order\Embedded_RKs.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\High_order\Gragg_Burlisch_Stoer.f90"/></Filter>
<Filter Name="Tools">
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Tools\Stability.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Tools\Stability_regions.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Tools\Temporal_error.f90"/></Filter>
<Filter Name="Wrappers">
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Wrappers\dop853.f"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Wrappers\dopri5.f"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Wrappers\dr_dop853.f"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Wrappers\dr_dopri5.f"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Wrappers\dr_odex.f"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Wrappers\ode113.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Wrappers\odex.f"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Wrappers\Wrappers.f90"/></Filter>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Cauchy_Problem.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\ODE_Interface.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Temporal_scheme_Interface.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Cauchy_Problem\sources\Temporal_Schemes.f90"/></Filter>
<Filter Name="Collocation methods">
<File RelativePath=".\sources\Numerical_Methods\Collocation_methods\Collocation_methods.f90"/></Filter>
<Filter Name="dislin">
<File RelativePath=".\sources\dislin\disifl_d.lib"/>
<File RelativePath=".\sources\dislin\dislin_d.f90"/></Filter>
<Filter Name="Finite Differences">
<Filter Name="examples">
<File RelativePath=".\sources\Numerical_Methods\Finite_Differences\examples\API_Example_Finite_Differences.f90"/></Filter>
<File RelativePath=".\sources\Numerical_Methods\Finite_Differences\sources\Finite_differences.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Finite_Differences\sources\Non_uniform_grids.f90"/></Filter>
<Filter Name="IBVP_and_BVP">
<Filter Name="Examples">
<File RelativePath=".\sources\Numerical_Methods\IBVP_BVP\examples\API_Example_IBVP_and_BVP.f90"/>
<File RelativePath=".\sources\Numerical_Methods\IBVP_BVP\examples\Boundary_layer.f90"/>
<File RelativePath=".\sources\Numerical_Methods\IBVP_BVP\examples\Navier_Stokes_cavities.f90"/></Filter>
<File RelativePath=".\sources\Numerical_Methods\IBVP_BVP\sources\IBVP_and_BVPs.f90"/></Filter>
<Filter Name="Initial Boundary Value Problem">
<Filter Name="examples">
<File RelativePath=".\sources\Numerical_Methods\Initial_Boundary_Value_Problem\examples\API_Example_IBVP_Chebyshev.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Initial_Boundary_Value_Problem\examples\API_Example_IBVP_Fourier.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Initial_Boundary_Value_Problem\examples\API_Example_Initial_Boundary_Value_problem.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Initial_Boundary_Value_Problem\examples\Burgers.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Initial_Boundary_Value_Problem\examples\Special_IBVP.f90"/></Filter>
<Filter Name="Tools"/>
<File RelativePath=".\sources\Numerical_Methods\Initial_Boundary_Value_Problem\sources\Initial_Boundary_Value_Problem1D.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Initial_Boundary_Value_Problem\sources\Initial_Boundary_Value_Problem2D.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Initial_Boundary_Value_Problem\sources\Initial_Boundary_Value_Problems.f90"/></Filter>
<Filter Name="Interpolation">
<Filter Name="Examples">
<File RelativePath=".\sources\Numerical_Methods\Interpolation\examples\API_Example_Chebyshev_Fourier_interpolation.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Interpolation\examples\API_Example_Chebyshev_interpolation.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Interpolation\examples\API_Example_Fourier_series.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Interpolation\examples\API_Example_Lagrange_Interpolation.f90"/></Filter>
<File RelativePath=".\sources\Numerical_Methods\Interpolation\sources\Chebyshev_interpolation.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Interpolation\sources\Fourier_interpolation.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Interpolation\sources\Interpolation.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Interpolation\sources\Lagrange_interpolation.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Interpolation\sources\Legendre_points.f90"/></Filter>
<Filter Name="Numerical Recipes">
<File RelativePath=".\sources\Numerical_Methods\Numerical Recipes\other\nrtype.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Numerical Recipes\Numerical_Recipes.f90"/></Filter>
<Filter Name="System of Equations">
<Filter Name="Examples">
<File RelativePath=".\sources\Numerical_Methods\System_of_Equations\examples\API_Example_Systems_of_Equations.f90"/>
<File RelativePath=".\sources\Numerical_Methods\System_of_Equations\examples\API_examples_dependencies.f90"/></Filter>
<File RelativePath=".\sources\Numerical_Methods\System_of_Equations\sources\Dependencies.f90"/>
<File RelativePath=".\sources\Numerical_Methods\System_of_Equations\sources\Dependencies1D.f90"/>
<File RelativePath=".\sources\Numerical_Methods\System_of_Equations\sources\Dependencies2D .f90"/>
<File RelativePath=".\sources\Numerical_Methods\System_of_Equations\sources\Dependencies_BC.f90"/>
<File RelativePath=".\sources\Numerical_Methods\System_of_Equations\sources\Dependencies_IBVP2D.f90"/>
<File RelativePath=".\sources\Numerical_Methods\System_of_Equations\sources\Jacobian_module.f90"/>
<File RelativePath=".\sources\Numerical_Methods\System_of_Equations\sources\Linear_systems.f90"/>
<File RelativePath=".\sources\Numerical_Methods\System_of_Equations\sources\Linearity.f90"/>
<File RelativePath=".\sources\Numerical_Methods\System_of_Equations\sources\Non_Linear_Systems.f90"/></Filter>
<Filter Name="Utilities">
<File RelativePath=".\sources\Numerical_Methods\Utilities\sources\plots.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Utilities\sources\show_orbits.f90"/>
<File RelativePath=".\sources\Numerical_Methods\Utilities\sources\Utilities.f90"/></Filter>
<File RelativePath=".\.gitignore"/>
<File RelativePath=".\sources\Advanced_problems.f90"/>
<File RelativePath=".\sources\main_NumericalHUB.f90"/>
<File RelativePath=".\sources\my_examples.f90"/>
<File RelativePath=".\sources\my_milestones.f90"/></Filter></Files>
<Globals/></VisualStudioProject>