ode_Points

Functions for generating points for training model.

While available to user, not meant to be used. Instead interface through N_pde parameter of solving functions detailed in "Main User Functions".

defineCollocationPoints(t_bdry, N_pde)

Function which generates collocation points along t.

Parameters:
  • t_bdry (list) –

    list of two elements, the interval of t to be solved on.

  • N_pde (int) –

    Number of randomly sampled collocation points along t which PINN uses in training.

Returns:
  • ode_points( list ) –

    randomly and evenly sampled points along t, using pyDOE's lhs function