├── Docs ├── FormulaSheet.pdf └── UserGuide.pdf ├── LICENSE ├── README.md ├── Sample Outputs ├── 2d_01.avi ├── 3d_01.avi └── SampleOutputs.txt ├── Schrodinger_animation_1.mp4 ├── TdseSolver ├── TdseSolver.sln ├── TdseSolver_2D1P │ ├── Algorithms │ │ ├── Colorer.cs │ │ ├── Cropper.cs │ │ ├── Evolver.cs │ │ ├── RunParams.cs │ │ ├── Smoother.cs │ │ ├── Upsampler.cs │ │ ├── VisscherWf.cs │ │ ├── WaveFunction.cs │ │ ├── WaveFunctionUtils.cs │ │ └── Wavefunction.IO.cs │ ├── App.config │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── System │ │ ├── App.config │ │ ├── Program.cs │ │ └── Settings.cs │ ├── TdseSolver_2D1P.csproj │ ├── UI │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── PostProcessingControl.Designer.cs │ │ ├── PostProcessingControl.cs │ │ ├── PostProcessingControl.resx │ │ ├── SolverControl.Designer.cs │ │ ├── SolverControl.cs │ │ ├── SolverControl.resx │ │ ├── VCodeBuilder.Designer.cs │ │ ├── VCodeBuilder.cs │ │ └── VCodeBuilder.resx │ └── bin │ │ ├── Debug │ │ ├── TdseSolver_2D1P.exe │ │ ├── TdseSolver_2D1P.exe.config │ │ ├── TdseSolver_2D1P.instr.pdb │ │ ├── TdseSolver_2D1P.pdb │ │ ├── TdseUtils.dll │ │ ├── TdseUtils.instr.pdb │ │ └── TdseUtils.pdb │ │ └── Release │ │ ├── TdseSolver_2D1P.exe │ │ ├── TdseSolver_2D1P.exe.config │ │ ├── TdseSolver_2D1P.pdb │ │ ├── TdseUtils.dll │ │ └── TdseUtils.pdb ├── TdseSolver_2D2P │ ├── Algorithms │ │ ├── Cropper.cs │ │ ├── Evolver.cs │ │ ├── ProbabilityDensity.IO.cs │ │ ├── ProbabilityDensity.cs │ │ ├── RunParams.cs │ │ ├── VisscherWf.cs │ │ ├── WaveFunction.cs │ │ └── WaveFunctionUtils.cs │ ├── App.config │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── System │ │ ├── App.config │ │ ├── Program.cs │ │ └── Settings.cs │ ├── TdseSolver_2D2P.csproj │ ├── UI │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── PostProcessingControl.Designer.cs │ │ ├── PostProcessingControl.cs │ │ ├── PostProcessingControl.resx │ │ ├── SolverControl.Designer.cs │ │ ├── SolverControl.cs │ │ ├── SolverControl.resx │ │ ├── VCodeBuilder.Designer.cs │ │ ├── VCodeBuilder.cs │ │ └── VCodeBuilder.resx │ └── bin │ │ ├── Debug │ │ ├── TdseSolver_2D2P.exe │ │ ├── TdseSolver_2D2P.exe.config │ │ ├── TdseSolver_2D2P.pdb │ │ ├── TdseUtils.dll │ │ └── TdseUtils.pdb │ │ └── Release │ │ ├── TdseSolver_2D2P.exe │ │ ├── TdseSolver_2D2P.exe.config │ │ ├── TdseSolver_2D2P.pdb │ │ ├── TdseUtils.dll │ │ └── TdseUtils.pdb ├── TdseSolver_2D2P_NS │ ├── Algorithms │ │ ├── Cropper.cs │ │ ├── Evolver.cs │ │ ├── ProbabilityDensity.IO.cs │ │ ├── ProbabilityDensity.cs │ │ ├── RunParams.cs │ │ ├── VisscherWf.cs │ │ ├── WaveFunction.cs │ │ └── WaveFunctionUtils.cs │ ├── App.config │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── System │ │ ├── App.config │ │ ├── Program.cs │ │ └── Settings.cs │ ├── TdseSolver_2D2P_NS.csproj │ ├── UI │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── PostProcessingControl.Designer.cs │ │ ├── PostProcessingControl.cs │ │ ├── PostProcessingControl.resx │ │ ├── SolverControl.Designer.cs │ │ ├── SolverControl.cs │ │ ├── SolverControl.resx │ │ ├── VCodeBuilder.Designer.cs │ │ ├── VCodeBuilder.cs │ │ └── VCodeBuilder.resx │ └── bin │ │ ├── Debug │ │ ├── TdseSolver_2D1P.exe │ │ ├── TdseSolver_2D1P.instr.pdb │ │ ├── TdseSolver_2D1P.pdb │ │ ├── TdseSolver_2D2P_NS.exe │ │ ├── TdseSolver_2D2P_NS.exe.config │ │ ├── TdseSolver_2D2P_NS.instr.pdb │ │ ├── TdseSolver_2D2P_NS.pdb │ │ ├── TdseUtils.dll │ │ ├── TdseUtils.instr.pdb │ │ └── TdseUtils.pdb │ │ ├── Release.zip │ │ └── Release │ │ ├── TdseSolver_2D1P.exe │ │ ├── TdseSolver_2D1P.exe.config │ │ ├── TdseSolver_2D1P.pdb │ │ ├── TdseSolver_2D2P_NS.exe │ │ ├── TdseSolver_2D2P_NS.exe.config │ │ ├── TdseSolver_2D2P_NS.pdb │ │ ├── TdseUtils.dll │ │ └── TdseUtils.pdb ├── TdseSolver_3D1P │ ├── Algorithms │ │ ├── Colorer.cs │ │ ├── Cropper.cs │ │ ├── Evolver.cs │ │ ├── GridSpec.cs │ │ ├── RunParams.cs │ │ ├── Smoother.cs │ │ ├── Upsampler.cs │ │ ├── VisscherWf.cs │ │ ├── WaveFunction.cs │ │ ├── WaveFunctionUtils.cs │ │ └── Wavefunction.IO.cs │ ├── App.config │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── System │ │ ├── App.config │ │ ├── Program.cs │ │ └── Settings.cs │ ├── TdseSolver_3D1P.csproj │ ├── UI │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── PostProcessingControl.Designer.cs │ │ ├── PostProcessingControl.cs │ │ ├── PostProcessingControl.resx │ │ ├── SolverControl.Designer.cs │ │ ├── SolverControl.cs │ │ ├── SolverControl.resx │ │ ├── VCodeBuilder.Designer.cs │ │ ├── VCodeBuilder.cs │ │ └── VCodeBuilder.resx │ └── bin │ │ ├── Debug │ │ ├── TdseSolver_3D1P.exe │ │ ├── TdseSolver_3D1P.exe.config │ │ ├── TdseSolver_3D1P.pdb │ │ ├── TdseUtils.dll │ │ └── TdseUtils.pdb │ │ └── Release │ │ ├── TdseSolver_3D1P.exe │ │ ├── TdseSolver_3D1P.exe.config │ │ ├── TdseSolver_3D1P.pdb │ │ ├── TdseUtils.dll │ │ └── TdseUtils.pdb ├── TdseSolver_3D2P │ ├── Algorithms │ │ ├── Evolver.cs │ │ ├── GridSpec.cs │ │ ├── ProbabilityDensity.IO.cs │ │ ├── ProbabilityDensity.cs │ │ ├── RunParams.cs │ │ ├── VisscherWf.cs │ │ ├── WaveFunction.cs │ │ └── WaveFunctionUtils.cs │ ├── App.config │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── System │ │ ├── App.config │ │ ├── Program.cs │ │ └── Settings.cs │ ├── TdseSolver_3D2P.csproj │ ├── UI │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── SolverControl.Designer.cs │ │ ├── SolverControl.cs │ │ ├── SolverControl.resx │ │ ├── VCodeBuilder.Designer.cs │ │ ├── VCodeBuilder.cs │ │ └── VCodeBuilder.resx │ └── bin │ │ ├── Debug │ │ ├── TdseSolver_3D2P.exe │ │ ├── TdseSolver_3D2P.exe.config │ │ ├── TdseSolver_3D2P.pdb │ │ ├── TdseUtils.dll │ │ └── TdseUtils.pdb │ │ ├── Release.zip │ │ └── Release │ │ ├── TdseSolver_3D2P.exe │ │ ├── TdseSolver_3D2P.exe.config │ │ ├── TdseSolver_3D2P.pdb │ │ ├── TdseUtils.dll │ │ └── TdseUtils.pdb └── TdseUtils │ ├── ColorBuilder.Designer.cs │ ├── ColorBuilder.cs │ ├── Math │ ├── Complex.cs │ ├── EigenSystem.cs │ ├── LUDecomp.cs │ ├── Matrix.cs │ ├── Vec2.cs │ ├── Vec3.cs │ └── Vector.cs │ ├── Misc.cs │ ├── NonModalMessageBox.Designer.cs │ ├── NonModalMessageBox.cs │ ├── Proc.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── TdseUtils.csproj │ ├── app.config │ └── bin │ ├── Debug │ ├── TdseUtils.dll │ ├── TdseUtils.dll.config │ ├── TdseUtils.instr.pdb │ └── TdseUtils.pdb │ └── Release │ ├── TdseUtils.dll │ ├── TdseUtils.dll.config │ └── TdseUtils.pdb └── UI.png /Docs/FormulaSheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/Docs/FormulaSheet.pdf -------------------------------------------------------------------------------- /Docs/UserGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/Docs/UserGuide.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/README.md -------------------------------------------------------------------------------- /Sample Outputs/2d_01.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/Sample Outputs/2d_01.avi -------------------------------------------------------------------------------- /Sample Outputs/3d_01.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/Sample Outputs/3d_01.avi -------------------------------------------------------------------------------- /Sample Outputs/SampleOutputs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/Sample Outputs/SampleOutputs.txt -------------------------------------------------------------------------------- /Schrodinger_animation_1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/Schrodinger_animation_1.mp4 -------------------------------------------------------------------------------- /TdseSolver/TdseSolver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver.sln -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Algorithms/Colorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Algorithms/Colorer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Algorithms/Cropper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Algorithms/Cropper.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Algorithms/Evolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Algorithms/Evolver.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Algorithms/RunParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Algorithms/RunParams.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Algorithms/Smoother.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Algorithms/Smoother.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Algorithms/Upsampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Algorithms/Upsampler.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Algorithms/VisscherWf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Algorithms/VisscherWf.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Algorithms/WaveFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Algorithms/WaveFunction.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Algorithms/WaveFunctionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Algorithms/WaveFunctionUtils.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Algorithms/Wavefunction.IO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Algorithms/Wavefunction.IO.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/App.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Properties/Resources.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/Properties/Settings.settings -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/System/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/System/App.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/System/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/System/Program.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/System/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/System/Settings.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/TdseSolver_2D1P.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/TdseSolver_2D1P.csproj -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/UI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/UI/MainForm.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/UI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/UI/MainForm.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/UI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/UI/MainForm.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/UI/PostProcessingControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/UI/PostProcessingControl.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/UI/PostProcessingControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/UI/PostProcessingControl.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/UI/PostProcessingControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/UI/PostProcessingControl.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/UI/SolverControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/UI/SolverControl.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/UI/SolverControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/UI/SolverControl.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/UI/SolverControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/UI/SolverControl.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/UI/VCodeBuilder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/UI/VCodeBuilder.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/UI/VCodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/UI/VCodeBuilder.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/UI/VCodeBuilder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/UI/VCodeBuilder.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/bin/Debug/TdseSolver_2D1P.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/bin/Debug/TdseSolver_2D1P.exe -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/bin/Debug/TdseSolver_2D1P.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/bin/Debug/TdseSolver_2D1P.exe.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/bin/Debug/TdseSolver_2D1P.instr.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/bin/Debug/TdseSolver_2D1P.instr.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/bin/Debug/TdseSolver_2D1P.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/bin/Debug/TdseSolver_2D1P.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/bin/Debug/TdseUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/bin/Debug/TdseUtils.dll -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/bin/Debug/TdseUtils.instr.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/bin/Debug/TdseUtils.instr.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/bin/Debug/TdseUtils.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/bin/Debug/TdseUtils.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/bin/Release/TdseSolver_2D1P.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/bin/Release/TdseSolver_2D1P.exe -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/bin/Release/TdseSolver_2D1P.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/bin/Release/TdseSolver_2D1P.exe.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/bin/Release/TdseSolver_2D1P.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/bin/Release/TdseSolver_2D1P.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/bin/Release/TdseUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/bin/Release/TdseUtils.dll -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D1P/bin/Release/TdseUtils.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D1P/bin/Release/TdseUtils.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/Algorithms/Cropper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/Algorithms/Cropper.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/Algorithms/Evolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/Algorithms/Evolver.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/Algorithms/ProbabilityDensity.IO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/Algorithms/ProbabilityDensity.IO.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/Algorithms/ProbabilityDensity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/Algorithms/ProbabilityDensity.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/Algorithms/RunParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/Algorithms/RunParams.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/Algorithms/VisscherWf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/Algorithms/VisscherWf.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/Algorithms/WaveFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/Algorithms/WaveFunction.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/Algorithms/WaveFunctionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/Algorithms/WaveFunctionUtils.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/App.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/Properties/Resources.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/Properties/Settings.settings -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/System/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/System/App.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/System/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/System/Program.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/System/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/System/Settings.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/TdseSolver_2D2P.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/TdseSolver_2D2P.csproj -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/UI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/UI/MainForm.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/UI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/UI/MainForm.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/UI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/UI/MainForm.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/UI/PostProcessingControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/UI/PostProcessingControl.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/UI/PostProcessingControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/UI/PostProcessingControl.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/UI/PostProcessingControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/UI/PostProcessingControl.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/UI/SolverControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/UI/SolverControl.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/UI/SolverControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/UI/SolverControl.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/UI/SolverControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/UI/SolverControl.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/UI/VCodeBuilder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/UI/VCodeBuilder.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/UI/VCodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/UI/VCodeBuilder.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/UI/VCodeBuilder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/UI/VCodeBuilder.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/bin/Debug/TdseSolver_2D2P.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/bin/Debug/TdseSolver_2D2P.exe -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/bin/Debug/TdseSolver_2D2P.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/bin/Debug/TdseSolver_2D2P.exe.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/bin/Debug/TdseSolver_2D2P.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/bin/Debug/TdseSolver_2D2P.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/bin/Debug/TdseUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/bin/Debug/TdseUtils.dll -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/bin/Debug/TdseUtils.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/bin/Debug/TdseUtils.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/bin/Release/TdseSolver_2D2P.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/bin/Release/TdseSolver_2D2P.exe -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/bin/Release/TdseSolver_2D2P.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/bin/Release/TdseSolver_2D2P.exe.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/bin/Release/TdseSolver_2D2P.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/bin/Release/TdseSolver_2D2P.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/bin/Release/TdseUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/bin/Release/TdseUtils.dll -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P/bin/Release/TdseUtils.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P/bin/Release/TdseUtils.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/Algorithms/Cropper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/Algorithms/Cropper.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/Algorithms/Evolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/Algorithms/Evolver.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/Algorithms/ProbabilityDensity.IO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/Algorithms/ProbabilityDensity.IO.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/Algorithms/ProbabilityDensity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/Algorithms/ProbabilityDensity.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/Algorithms/RunParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/Algorithms/RunParams.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/Algorithms/VisscherWf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/Algorithms/VisscherWf.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/Algorithms/WaveFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/Algorithms/WaveFunction.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/Algorithms/WaveFunctionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/Algorithms/WaveFunctionUtils.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/App.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/Properties/Resources.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/Properties/Settings.settings -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/System/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/System/App.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/System/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/System/Program.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/System/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/System/Settings.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/TdseSolver_2D2P_NS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/TdseSolver_2D2P_NS.csproj -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/UI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/UI/MainForm.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/UI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/UI/MainForm.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/UI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/UI/MainForm.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/UI/PostProcessingControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/UI/PostProcessingControl.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/UI/PostProcessingControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/UI/PostProcessingControl.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/UI/PostProcessingControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/UI/PostProcessingControl.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/UI/SolverControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/UI/SolverControl.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/UI/SolverControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/UI/SolverControl.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/UI/SolverControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/UI/SolverControl.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/UI/VCodeBuilder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/UI/VCodeBuilder.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/UI/VCodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/UI/VCodeBuilder.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/UI/VCodeBuilder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/UI/VCodeBuilder.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D1P.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D1P.exe -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D1P.instr.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D1P.instr.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D1P.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D1P.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D2P_NS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D2P_NS.exe -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D2P_NS.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D2P_NS.exe.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D2P_NS.instr.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D2P_NS.instr.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D2P_NS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseSolver_2D2P_NS.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseUtils.dll -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseUtils.instr.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseUtils.instr.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseUtils.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Debug/TdseUtils.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Release.zip -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseSolver_2D1P.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseSolver_2D1P.exe -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseSolver_2D1P.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseSolver_2D1P.exe.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseSolver_2D1P.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseSolver_2D1P.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseSolver_2D2P_NS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseSolver_2D2P_NS.exe -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseSolver_2D2P_NS.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseSolver_2D2P_NS.exe.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseSolver_2D2P_NS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseSolver_2D2P_NS.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseUtils.dll -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseUtils.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_2D2P_NS/bin/Release/TdseUtils.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Algorithms/Colorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Algorithms/Colorer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Algorithms/Cropper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Algorithms/Cropper.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Algorithms/Evolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Algorithms/Evolver.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Algorithms/GridSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Algorithms/GridSpec.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Algorithms/RunParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Algorithms/RunParams.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Algorithms/Smoother.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Algorithms/Smoother.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Algorithms/Upsampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Algorithms/Upsampler.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Algorithms/VisscherWf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Algorithms/VisscherWf.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Algorithms/WaveFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Algorithms/WaveFunction.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Algorithms/WaveFunctionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Algorithms/WaveFunctionUtils.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Algorithms/Wavefunction.IO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Algorithms/Wavefunction.IO.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/App.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Properties/Resources.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/Properties/Settings.settings -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/System/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/System/App.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/System/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/System/Program.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/System/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/System/Settings.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/TdseSolver_3D1P.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/TdseSolver_3D1P.csproj -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/UI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/UI/MainForm.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/UI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/UI/MainForm.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/UI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/UI/MainForm.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/UI/PostProcessingControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/UI/PostProcessingControl.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/UI/PostProcessingControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/UI/PostProcessingControl.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/UI/PostProcessingControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/UI/PostProcessingControl.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/UI/SolverControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/UI/SolverControl.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/UI/SolverControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/UI/SolverControl.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/UI/SolverControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/UI/SolverControl.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/UI/VCodeBuilder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/UI/VCodeBuilder.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/UI/VCodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/UI/VCodeBuilder.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/UI/VCodeBuilder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/UI/VCodeBuilder.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/bin/Debug/TdseSolver_3D1P.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/bin/Debug/TdseSolver_3D1P.exe -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/bin/Debug/TdseSolver_3D1P.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/bin/Debug/TdseSolver_3D1P.exe.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/bin/Debug/TdseSolver_3D1P.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/bin/Debug/TdseSolver_3D1P.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/bin/Debug/TdseUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/bin/Debug/TdseUtils.dll -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/bin/Debug/TdseUtils.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/bin/Debug/TdseUtils.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/bin/Release/TdseSolver_3D1P.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/bin/Release/TdseSolver_3D1P.exe -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/bin/Release/TdseSolver_3D1P.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/bin/Release/TdseSolver_3D1P.exe.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/bin/Release/TdseSolver_3D1P.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/bin/Release/TdseSolver_3D1P.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/bin/Release/TdseUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/bin/Release/TdseUtils.dll -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D1P/bin/Release/TdseUtils.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D1P/bin/Release/TdseUtils.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/Algorithms/Evolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/Algorithms/Evolver.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/Algorithms/GridSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/Algorithms/GridSpec.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/Algorithms/ProbabilityDensity.IO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/Algorithms/ProbabilityDensity.IO.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/Algorithms/ProbabilityDensity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/Algorithms/ProbabilityDensity.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/Algorithms/RunParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/Algorithms/RunParams.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/Algorithms/VisscherWf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/Algorithms/VisscherWf.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/Algorithms/WaveFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/Algorithms/WaveFunction.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/Algorithms/WaveFunctionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/Algorithms/WaveFunctionUtils.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/App.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/Properties/Resources.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/Properties/Settings.settings -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/System/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/System/App.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/System/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/System/Program.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/System/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/System/Settings.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/TdseSolver_3D2P.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/TdseSolver_3D2P.csproj -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/UI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/UI/MainForm.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/UI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/UI/MainForm.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/UI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/UI/MainForm.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/UI/SolverControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/UI/SolverControl.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/UI/SolverControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/UI/SolverControl.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/UI/SolverControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/UI/SolverControl.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/UI/VCodeBuilder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/UI/VCodeBuilder.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/UI/VCodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/UI/VCodeBuilder.cs -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/UI/VCodeBuilder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/UI/VCodeBuilder.resx -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/bin/Debug/TdseSolver_3D2P.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/bin/Debug/TdseSolver_3D2P.exe -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/bin/Debug/TdseSolver_3D2P.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/bin/Debug/TdseSolver_3D2P.exe.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/bin/Debug/TdseSolver_3D2P.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/bin/Debug/TdseSolver_3D2P.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/bin/Debug/TdseUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/bin/Debug/TdseUtils.dll -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/bin/Debug/TdseUtils.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/bin/Debug/TdseUtils.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/bin/Release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/bin/Release.zip -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/bin/Release/TdseSolver_3D2P.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/bin/Release/TdseSolver_3D2P.exe -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/bin/Release/TdseSolver_3D2P.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/bin/Release/TdseSolver_3D2P.exe.config -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/bin/Release/TdseSolver_3D2P.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/bin/Release/TdseSolver_3D2P.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/bin/Release/TdseUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/bin/Release/TdseUtils.dll -------------------------------------------------------------------------------- /TdseSolver/TdseSolver_3D2P/bin/Release/TdseUtils.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseSolver_3D2P/bin/Release/TdseUtils.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/ColorBuilder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/ColorBuilder.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/ColorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/ColorBuilder.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/Math/Complex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/Math/Complex.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/Math/EigenSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/Math/EigenSystem.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/Math/LUDecomp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/Math/LUDecomp.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/Math/Matrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/Math/Matrix.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/Math/Vec2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/Math/Vec2.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/Math/Vec3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/Math/Vec3.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/Math/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/Math/Vector.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/Misc.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/NonModalMessageBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/NonModalMessageBox.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/NonModalMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/NonModalMessageBox.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/Proc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/Proc.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/Properties/Settings.settings -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/TdseUtils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/TdseUtils.csproj -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/app.config -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/bin/Debug/TdseUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/bin/Debug/TdseUtils.dll -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/bin/Debug/TdseUtils.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/bin/Debug/TdseUtils.dll.config -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/bin/Debug/TdseUtils.instr.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/bin/Debug/TdseUtils.instr.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/bin/Debug/TdseUtils.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/bin/Debug/TdseUtils.pdb -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/bin/Release/TdseUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/bin/Release/TdseUtils.dll -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/bin/Release/TdseUtils.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/bin/Release/TdseUtils.dll.config -------------------------------------------------------------------------------- /TdseSolver/TdseUtils/bin/Release/TdseUtils.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/TdseSolver/TdseUtils/bin/Release/TdseUtils.pdb -------------------------------------------------------------------------------- /UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paul-G2/TDSE/HEAD/UI.png --------------------------------------------------------------------------------