aggiunta istruzione commit in italiano e parametro X_SRC in config

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-13 22:00:19 +02:00
parent a9f423fcd9
commit 99a42e53c7
2 changed files with 7 additions and 2 deletions
+4
View File
@@ -2,6 +2,10 @@
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
## Commit Messages
Write all git commit messages in Italian.
## Project Overview
**Heat Equation PINN** — A Physics-Informed Neural Network that solves the 1D time-varying heat equation with physical boundary conditions:
+3 -2
View File
@@ -4,8 +4,9 @@ K = 1.0 # conducibilità termica [W/m·K]
L = 1.0 # lunghezza barra [m]
T0 = 20.0 # temperatura iniziale uniforme [°C]
# Sorgente a x=0 (Neumann step)
Q_VAL = 150.0 # flusso di calore applicato [W/m²]
# Sorgente di calore
X_SRC = 0.0 # posizione della sorgente [m], in [0, L]
Q_VAL = 150.0 # flusso di calore applicato [W/m²]
T_STEP = 0.2 # istante di attivazione flusso [s]
# Convezione a x=L (Robin)