Discover Packages
github.com/talkanbaev-artur/poisson-equation-solver
src
backend
logic
model
package
Version:
v1.0.0
Opens a new window with list of versions in this module.
Published: Dec 21, 2022
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
type Numericals struct {
MethodID int `json:"id"`
MethodTitle string `json:"title"`
MethodDescription string `json:"description"`
MethodIcon *string `json:"icon"`
}
type Schema struct {
ID int `json:"id"`
Name string `json:"name"`
Theta float64 `json:"theta"`
Tau float64 `json:"tau"`
}
type SolutionData struct {
Error float64 `json:"err"`
Sigma float64 `json:"sigma"`
IterationCount int `json:"k"`
Solution [][][]float64 `json:"data"`
Orginal [][]float64 `json:"original"`
}
type SolutionParameters struct {
GridSize int `json:"n"`
TaskID int `json:"task"`
AdditionalParameters map[string ]float64 `json:"special"`
Theta float64 `json:"theta"`
Tau float64 `json:"tau"`
}
type Task struct {
ID int `json:"id"`
Name string `json:"name"`
F D2RF `json:"-"`
Solution D2RF `json:"-"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.