├── .gitattributes ├── 01_pure_bend ├── Dif_op_u.py ├── Dif_op_v.py ├── FNN.py ├── Input_info.py ├── Opt.py ├── PINN.py ├── Visualization.py ├── __pycache__ │ ├── Dif_op_u.cpython-39.pyc │ ├── Dif_op_v.cpython-39.pyc │ ├── FNN.cpython-39.pyc │ ├── Input_info.cpython-39.pyc │ ├── Opt.cpython-39.pyc │ ├── PINN.cpython-39.pyc │ └── Visualization.cpython-39.pyc ├── out.mat ├── pure_bend.py └── vis_struc.m ├── 01_pure_bend_rand ├── Coord.mat ├── Dif_op_u.py ├── Dif_op_v.py ├── FNN.py ├── Input_info.py ├── Opt.py ├── PINN.py ├── Segm.py ├── Visualization.py ├── __pycache__ │ ├── Dif_op_u.cpython-39.pyc │ ├── Dif_op_v.cpython-39.pyc │ ├── FNN.cpython-39.pyc │ ├── Input_info.cpython-39.pyc │ ├── Opt.cpython-39.pyc │ ├── PINN.cpython-39.pyc │ ├── Segm.cpython-39.pyc │ └── Visualization.cpython-39.pyc ├── out.mat ├── pure_bend_rand.py └── vis_struc.m ├── 02_stretching_plate ├── Dif_op_u.py ├── Dif_op_v.py ├── FNN.py ├── Input_info.py ├── Opt.py ├── PINN.py ├── Visualization.py ├── __pycache__ │ ├── Dif_op_u.cpython-39.pyc │ ├── Dif_op_v.cpython-39.pyc │ ├── FNN.cpython-39.pyc │ ├── Input_info.cpython-39.pyc │ ├── Opt.cpython-39.pyc │ ├── PINN.cpython-39.pyc │ └── Visualization.cpython-39.pyc ├── out.mat ├── stretching_plate.py └── vis_struc.m ├── 03_perforated_strip_plate ├── Dif_op_u.py ├── Dif_op_v.py ├── FNN.py ├── Input_info.py ├── Opt.py ├── PINN.py ├── Visualization.py ├── __pycache__ │ ├── Dif_op_u.cpython-39.pyc │ ├── Dif_op_v.cpython-39.pyc │ ├── FNN.cpython-39.pyc │ ├── Input_info.cpython-39.pyc │ ├── Opt.cpython-39.pyc │ ├── PINN.cpython-39.pyc │ └── Visualization.cpython-39.pyc ├── out.mat ├── perforated_strip_plate.py └── vis_struc.m └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/.gitattributes -------------------------------------------------------------------------------- /01_pure_bend/Dif_op_u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/Dif_op_u.py -------------------------------------------------------------------------------- /01_pure_bend/Dif_op_v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/Dif_op_v.py -------------------------------------------------------------------------------- /01_pure_bend/FNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/FNN.py -------------------------------------------------------------------------------- /01_pure_bend/Input_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/Input_info.py -------------------------------------------------------------------------------- /01_pure_bend/Opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/Opt.py -------------------------------------------------------------------------------- /01_pure_bend/PINN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/PINN.py -------------------------------------------------------------------------------- /01_pure_bend/Visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/Visualization.py -------------------------------------------------------------------------------- /01_pure_bend/__pycache__/Dif_op_u.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/__pycache__/Dif_op_u.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend/__pycache__/Dif_op_v.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/__pycache__/Dif_op_v.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend/__pycache__/FNN.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/__pycache__/FNN.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend/__pycache__/Input_info.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/__pycache__/Input_info.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend/__pycache__/Opt.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/__pycache__/Opt.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend/__pycache__/PINN.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/__pycache__/PINN.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend/__pycache__/Visualization.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/__pycache__/Visualization.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend/out.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/out.mat -------------------------------------------------------------------------------- /01_pure_bend/pure_bend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/pure_bend.py -------------------------------------------------------------------------------- /01_pure_bend/vis_struc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend/vis_struc.m -------------------------------------------------------------------------------- /01_pure_bend_rand/Coord.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/Coord.mat -------------------------------------------------------------------------------- /01_pure_bend_rand/Dif_op_u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/Dif_op_u.py -------------------------------------------------------------------------------- /01_pure_bend_rand/Dif_op_v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/Dif_op_v.py -------------------------------------------------------------------------------- /01_pure_bend_rand/FNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/FNN.py -------------------------------------------------------------------------------- /01_pure_bend_rand/Input_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/Input_info.py -------------------------------------------------------------------------------- /01_pure_bend_rand/Opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/Opt.py -------------------------------------------------------------------------------- /01_pure_bend_rand/PINN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/PINN.py -------------------------------------------------------------------------------- /01_pure_bend_rand/Segm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/Segm.py -------------------------------------------------------------------------------- /01_pure_bend_rand/Visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/Visualization.py -------------------------------------------------------------------------------- /01_pure_bend_rand/__pycache__/Dif_op_u.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/__pycache__/Dif_op_u.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend_rand/__pycache__/Dif_op_v.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/__pycache__/Dif_op_v.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend_rand/__pycache__/FNN.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/__pycache__/FNN.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend_rand/__pycache__/Input_info.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/__pycache__/Input_info.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend_rand/__pycache__/Opt.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/__pycache__/Opt.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend_rand/__pycache__/PINN.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/__pycache__/PINN.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend_rand/__pycache__/Segm.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/__pycache__/Segm.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend_rand/__pycache__/Visualization.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/__pycache__/Visualization.cpython-39.pyc -------------------------------------------------------------------------------- /01_pure_bend_rand/out.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/out.mat -------------------------------------------------------------------------------- /01_pure_bend_rand/pure_bend_rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/pure_bend_rand.py -------------------------------------------------------------------------------- /01_pure_bend_rand/vis_struc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/01_pure_bend_rand/vis_struc.m -------------------------------------------------------------------------------- /02_stretching_plate/Dif_op_u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/Dif_op_u.py -------------------------------------------------------------------------------- /02_stretching_plate/Dif_op_v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/Dif_op_v.py -------------------------------------------------------------------------------- /02_stretching_plate/FNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/FNN.py -------------------------------------------------------------------------------- /02_stretching_plate/Input_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/Input_info.py -------------------------------------------------------------------------------- /02_stretching_plate/Opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/Opt.py -------------------------------------------------------------------------------- /02_stretching_plate/PINN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/PINN.py -------------------------------------------------------------------------------- /02_stretching_plate/Visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/Visualization.py -------------------------------------------------------------------------------- /02_stretching_plate/__pycache__/Dif_op_u.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/__pycache__/Dif_op_u.cpython-39.pyc -------------------------------------------------------------------------------- /02_stretching_plate/__pycache__/Dif_op_v.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/__pycache__/Dif_op_v.cpython-39.pyc -------------------------------------------------------------------------------- /02_stretching_plate/__pycache__/FNN.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/__pycache__/FNN.cpython-39.pyc -------------------------------------------------------------------------------- /02_stretching_plate/__pycache__/Input_info.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/__pycache__/Input_info.cpython-39.pyc -------------------------------------------------------------------------------- /02_stretching_plate/__pycache__/Opt.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/__pycache__/Opt.cpython-39.pyc -------------------------------------------------------------------------------- /02_stretching_plate/__pycache__/PINN.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/__pycache__/PINN.cpython-39.pyc -------------------------------------------------------------------------------- /02_stretching_plate/__pycache__/Visualization.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/__pycache__/Visualization.cpython-39.pyc -------------------------------------------------------------------------------- /02_stretching_plate/out.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/out.mat -------------------------------------------------------------------------------- /02_stretching_plate/stretching_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/stretching_plate.py -------------------------------------------------------------------------------- /02_stretching_plate/vis_struc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/02_stretching_plate/vis_struc.m -------------------------------------------------------------------------------- /03_perforated_strip_plate/Dif_op_u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/Dif_op_u.py -------------------------------------------------------------------------------- /03_perforated_strip_plate/Dif_op_v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/Dif_op_v.py -------------------------------------------------------------------------------- /03_perforated_strip_plate/FNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/FNN.py -------------------------------------------------------------------------------- /03_perforated_strip_plate/Input_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/Input_info.py -------------------------------------------------------------------------------- /03_perforated_strip_plate/Opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/Opt.py -------------------------------------------------------------------------------- /03_perforated_strip_plate/PINN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/PINN.py -------------------------------------------------------------------------------- /03_perforated_strip_plate/Visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/Visualization.py -------------------------------------------------------------------------------- /03_perforated_strip_plate/__pycache__/Dif_op_u.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/__pycache__/Dif_op_u.cpython-39.pyc -------------------------------------------------------------------------------- /03_perforated_strip_plate/__pycache__/Dif_op_v.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/__pycache__/Dif_op_v.cpython-39.pyc -------------------------------------------------------------------------------- /03_perforated_strip_plate/__pycache__/FNN.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/__pycache__/FNN.cpython-39.pyc -------------------------------------------------------------------------------- /03_perforated_strip_plate/__pycache__/Input_info.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/__pycache__/Input_info.cpython-39.pyc -------------------------------------------------------------------------------- /03_perforated_strip_plate/__pycache__/Opt.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/__pycache__/Opt.cpython-39.pyc -------------------------------------------------------------------------------- /03_perforated_strip_plate/__pycache__/PINN.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/__pycache__/PINN.cpython-39.pyc -------------------------------------------------------------------------------- /03_perforated_strip_plate/__pycache__/Visualization.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/__pycache__/Visualization.cpython-39.pyc -------------------------------------------------------------------------------- /03_perforated_strip_plate/out.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/out.mat -------------------------------------------------------------------------------- /03_perforated_strip_plate/perforated_strip_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/perforated_strip_plate.py -------------------------------------------------------------------------------- /03_perforated_strip_plate/vis_struc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/03_perforated_strip_plate/vis_struc.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinshuaiBai/LSWR_loss_function_PINN/HEAD/README.md --------------------------------------------------------------------------------