Research Report Template
[!info] 文件创建时间
2025-05-15,16:54
工作汇报
工作汇报的流程顺序
时间顺序
汇报前
这次汇报要达到什么目的
在什么场合
面向谁汇报
汇报对象的核心诉求
一句话概括出汇报主题
汇报中
目标是什么
采取了什么行动
结果是什么
针对于这个结果我的改进措施是什么
汇报后
回复汇报领导反馈意见
夸 - 批评 - 提建议
复盘调整
汇报内容复盘调整 -
领导反馈意见复盘调整 ## GARS框架
结构顺序
...
Critical-writig
[!info] 文件创建时间
2025-05-13,20:09
What To Why是什么变为为什么?
从看文献是什么内容?
解释了什么现象?
提出了什么观点?
变为了
文章为什么要这样写的?
作者提出的观点的原因是什么?
作者为什么要提出这样的观点?
提出这样的观点是否有效?
哪些内容是真正有用的?
“Descriptive vs Critical Writing”
(描述性写作与批判性写作) 。内容以表格形式对比两者特点:
[!info] 描述性写作(DESCRIPTIVE)
States what happened(陈述发生了什么)
States what something is like(描述某物是什么样的)
Gives t...
Search for relevant references by using a single sentence
[!info] 文件创建时间
2025-05-11,22:49
如何根据一句话查找参考文献
[!note] 查找参考文献
复制论文中的一句话
翻译为英文
在 WOS 中使用research-assistant 功能找相关主题的文章
https://webofscience.clarivate.cn/wos/research-assistant/
根据推荐的文章,选择相关的进行引用
Zotero 使用说明
[!info] 文件创建时间
2025-05-08,22:47
Easier Citation — 引用文献插件
[!note] 插件安装
在插件市场安装(github: Zotero Ciation, 7版本改名了)
[!note] 插入文献使用
word - (Zoter) Add/Edit Citation
在 Zotero 中查询标题进行引用
引用完成之后出现一个上标
添加参考文献目录
点击word 中的 第三个图标 - Add/Edit Bibliography
更新引用参考文献的格式
点击 Document Preferences
选择需要的...
PINNs-Burgers-2D
[!info] 文件创建时间
2025-05-07,16:42
二维 Burgers Equation 代码
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
nt = 500
nx = 51
ny = 51
nu = 0.1
dt = 0.001
dx = 2 / (nx - 1)
dy = 2 / (ny - 1)
x = np.linspace(0, 2, nx)
y = np.linspace(0, 2, ny)
comb = np.zeros((ny, nx))
u = np.zeros((ny, nx))
v = np.zeros((ny, nx))
un =...
PINNs-1D-Heat-Equation
[!info] 文件创建时间
2025-05-06,15:38
一维热传导方程代码
import numpy
from matplotlib import pyplot
length = 10
k = 0.89
temp_left = 100
temp_right = 200
total_sim_time = 10
dx = 0.1
x_vector = numpy.linspace(0, length, int(length / dx))
dt = 0.0001
t_vector = numpy.linspace(0, total_sim_time, int(total_sim_time / dt))
u = numpy.zeros([len(t_vector), le...
Github-Blog tutorials
[!info] 文件创建时间
2025-05-06,15:53
[!info] 提交任务
进入相关项目的文件夹目录底下(拖拽文件夹到终端)
检查是否连接成功 ssh -T git@github.com
显示远程仓库地址:git remote -v
上传文件:git add . / git add xxx.md
说明更换版本git commit -m “版本说明文字”
提交文件 git push
Github 检测连接
ssh -T git@github.com
git remote -v
修改文件提交任务
git add . / git add xxx.md
git commit -m “版本说明文字”
gi...
12 post articles, 2 pages.