init slide

This commit is contained in:
2025-08-15 13:19:32 +08:00
parent 22724a13f0
commit fa2011f17a
4 changed files with 124 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
.~lock*
.vscode
result

27
flake.lock generated Normal file
View File

@@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1754498491,
"narHash": "sha256-erbiH2agUTD0Z30xcVSFcDHzkRvkRXOQ3lb887bcVrs=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c2ae88e026f9525daf89587f3cbee584b92b6134",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

26
flake.nix Normal file
View File

@@ -0,0 +1,26 @@
{
inputs =
{
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
self.lfs = true;
};
outputs = inputs:
let
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; config.allowUnfree = true; };
typst = pkgs.typst.withPackages (ps: with ps; [ minimal-presentation ]);
env.TYPST_FONT_PATHS = builtins.concatStringsSep ":" (builtins.map (p: "${p}/share/fonts")
(with pkgs; [ corefonts source-han-serif nerd-fonts.fira-code ]));
buildTypst = name: source: pkgs.runCommand name { nativeBuildInputs = [ typst ]; src = ./.; inherit env; }
''
mkdir -p $out
typst compile --root $src $src/${source} $out/${name}
'';
in
{
packages.x86_64-linux =
{
paper = buildTypst "paper.pdf" "paper/main.typ";
slide = buildTypst "slide.pdf" "slide/main.typ";
};
};
}

70
slide/main.typ Normal file
View File

@@ -0,0 +1,70 @@
#import "@preview/minimal-presentation:0.6.0": *
// 中文使用思源宋体,英文使用 Times New Roman
#set text(font: ("Times New Roman", "Source Han Serif SC"))
#show raw: set text(font: "FiraCode Nerd Font")
#show: project.with(
title: "4H-SiC中声子研究",
author: "Haonan Chen",
index-title: "目录",
main-color: rgb("#3e5c98"),
lang: "zh"
)
// 默认的字体太小
#show raw: set text(size: 18pt)
= 研究目的、背景
== 为什么选这个柿子捏(我们有什么优势)
- 拉曼实验:亲自实验,可以细致地进行一些非常规的实验。
- 原理:有基础,用群表示论来解释拉曼可见性/强弱。
- 第一性原理计算:有基础,声子能带反折叠/缺陷的性质。
- 前人的研究:坑还没有被填完。
== 研究目的名义上introduction
- 4H-SiC 性能很好、器件应用广泛,因此需要开发原位的、非破坏性的表征技术。
- 拉曼主要体现声子的信息,并且早已经有应用,主要用来区分 SiC 的多型。
- 拉曼谱中有更多信息。有一些新的研究,但他们还有不足。
== 论文标题(暂定)
通过拉曼散射研究4H-SiC中声子与载流子和缺陷的影响
= 研究方法与约定
== 坐标轴定义
对于拉曼张量4H-SiC在面内并不总是各向同性的。因此需要仔细定义坐标轴。
- 对于由原子结构决定的一阶、二阶张量,面内没有各向异性;
但拉曼张量还与原子振动方向有关(三阶张量),原子在面内振动时,拉曼张量在面内就可能是各向异性的。
- 我们的定义与大部分文献一致。
#figure(
image("/画图/坐标/embed.svg"),
placement: none,
)
== 样品
- 掺Al外延片 5 个:
- 前四个外延片的厚度为 1 微米,第五个外延片的厚度为 2 微米。
- 外延层的 Al 掺杂浓度分别为 0.1 3.8 5.1 6.4 10 E18 cm#super[-3]
- 生长时 Si/C 比分别为 0.7 1.2 1.6 2.4 2.0。
== 拉曼实验中的激光入射
- 我们考虑三个入射方向:正入射、略入射和肩入射。
- 由于斜切和汇聚角,正入射并不完全是“正”的。
- 由于SiC的折射率较大导致略入射中起作用的散射角只有大约 25#sym.degree。
- 由于对焦困难,略入射的情况下,光谱精细度远远不如其它两种情况(尽管已将积分时间大大延长)。
#figure(
image("/画图/入射方向/main.svg"),
placement: none,
)