Skip to content

Commit

Permalink
Eliminate couple of TODOs in javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-punko committed Oct 15, 2024
1 parent cd2968d commit b1faff0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package by.andd3dfx.math.pde.border;

/**
* Params for border condition type 1
* Params for border condition type 1 (заданный режим): U(X,t)
*/
public class BorderConditionType1 implements BorderCondition {

/**
* Border condition U(t)
* U(t) value in asked time moment on this border
*
* @param t time
* @return U value in asked time moment on this border
* @return U value
*/
public double gU(double t) {
return 0;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package by.andd3dfx.math.pde.border;

/**
* Params for border condition type 2
* Params for border condition type 2 (заданная сила): dU_dx(X,t)
*/
public class BorderConditionType2 implements BorderCondition {

/**
* Border condition dU_dx(t)
* dU_dx(X,t) in asked time moment on this border
*
* @param t time
* @return dU_dt value in asked time moment on this border
* @return dU_dx value
*/
public double gdU_dx(double t) {
return 0;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
package by.andd3dfx.math.pde.border;

/**
* Params for border condition type 3
* Params for border condition type 3 (упругое закрепление): dU_dx(X,t) = h*(U(X,t) - Theta(t))
*/
public class BorderConditionType3 implements BorderCondition {

/**
* TODO add description
* Theta(t) value in asked time moment on this border
*
* @param t time
* @return ? value in asked time moment on this border
* @return Theta value
*/
public double gTheta(double t) {
return 0;
}

/**
* TODO add description
* @return
* h coefficient value on this border
*
* @return h value
*/
public double gH() {
return 0;
Expand Down

0 comments on commit b1faff0

Please sign in to comment.