You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The weak form of a PDE is a reformulation that allows the problem to be solved in a broader function space. Instead of requiring the solution to satisfy the PDE at every point (as in the strong form), the weak form requires the solution to satisfy an integral equation. This makes it particularly suitable for numerical methods such as the Finite Element Method.
89
+
# The weak form of a PDE is a reformulation that allows the problem to be solved in a broader
90
+
# function space. Instead of requiring the solution to satisfy the PDE at every point (as in the strong form),
91
+
# the weak form requires the solution to satisfy an integral equation. This makes it particularly suitable for
92
+
# numerical methods such as the Finite Element Method.
90
93
91
-
# Since we already hcave the original PDE (strong form), we can multiply each side by a test function $v \in H^1(\Omega)$(functions with square-integrable first derivatives). $v$ satisfies the Dirichlet boundary condition of $0$. Make integral on both sides.
94
+
# Since we already hcave the original PDE (strong form), we can multiply each side by a test
95
+
# function $v \in H^1(\Omega)$(functions with square-integrable first derivatives). $v$ satisfies
96
+
# the Dirichlet boundary condition of $0$. Make integral on both sides.
92
97
93
98
# The weak form associated with this formulation is, find $T \in H^1(\Omega)$, such that:
94
-
#$$
99
+
#```math
95
100
# \int_\Omega v (\mathbf{u} \cdot \nabla T) \, \mathrm{d}\Omega
96
101
# + \int_\Omega D \nabla T \cdot \nabla v \, \mathrm{d}\Omega
97
102
# = 0
98
-
#$$
103
+
#```
99
104
100
105
# ## FE spaces
101
106
@@ -106,7 +111,7 @@ using GridapGmsh
106
111
107
112
# Import the model from file using GmshDiscreteModel:
0 commit comments