18#include <grass/N_pde.h>
51 Opt->key_desc =
"name";
53 Opt->options =
"gauss,lu,cholesky,jacobi,sor,cg,bicgstab,pcg";
54 Opt->guisection =
"Solver";
55 Opt->description = (
"The type of solver which should solve the "
56 "symmetric linear equation system");
63 Opt->key_desc =
"name";
64 Opt->answer =
"bicgstab";
65 Opt->options =
"gauss,lu,jacobi,sor,bicgstab";
66 Opt->guisection =
"Solver";
67 Opt->description = (
"The type of solver which should solve the linear "
74 Opt->answer =
"10000";
75 Opt->guisection =
"Solver";
76 Opt->description = (
"Maximum number of iteration used to solve the "
77 "linear equation system");
83 Opt->answer =
"0.000001";
84 Opt->guisection =
"Solver";
85 Opt->description = (
"Error break criteria for iterative solver");
92 Opt->guisection =
"Solver";
93 Opt->description = (
"The relaxation parameter used by the jacobi and "
94 "sor solver for speedup or stabilizing");
100 Opt->answer =
"86400";
101 Opt->guisection =
"Solver";
102 Opt->description =
_(
"The calculation time in seconds");
struct Option * G_define_option(void)
Initializes an Option struct.
struct Option * N_define_standard_option(int opt)
Create standardised Option structure related to the gpde library.
Structure that stores option information.