中村宏 工学部計数工学科 情報理工学系研究科システム情報学専攻 計算システム論第 2 1

Size: px
Start display at page:

Download "中村宏 工学部計数工学科 情報理工学系研究科システム情報学専攻 計算システム論第 2 1"

Transcription

1 計算システム論第 2 (3 章 ) 中村宏 工学部計数工学科 情報理工学系研究科システム情報学専攻 計算システム論第 2

2 IPS Assembly Langage ( 抜粋 ) IPS operands Name Eample Comments $s-$s7, $t-$t9, $zero, Fast locations for data. In IPS, data mst be in registers to perform 32 registers $a-$a3, $v-$v, $gp, arithmetic. IPS register $zero alw ays eqals. Register $at is $fp, $sp, $ra, $at reserved for the assembler to handle large constants. emory[], Accessed only by data transfer instrctions. IPS ses byte addresses, so 2 3 memory emory[4],..., seqential w ords differ by 4. emory holds data strctres, sch as arrays, words emory[ ] and spilled registers, sch as those saved on procedre calls. IPS assembly langage Category Eample eaning Comments add add $s, $s2, $s3 $s = $s2 + $s3 Three operands; data in registers Arithmetic sbtract sb $s, $s2, $s3 $s = $s2 - $s3 Three operands; data in registers add immediate addi $s, $s2, $s = $s2 + Used to add constants load word lw $s, ($s2) $s = emory[$s2 + ] Word from memory to register store word sw $s, ($s2) emory[$s2 + ] = $s Word from register to memory Data transfer load byte lb $s, ($s2) $s = emory[$s2 + ] Byte from memory to register store byte sb $s, ($s2) emory[$s2 + ] = $s Byte from register to memory load pper immediate li $s, $s = * 2 6 Loads constant in pper 6 bits branch on eqal beq $s, $s2, 25 if ($s == $s2) go to PC branch on not eqal bne $s, $s2, 25 if ($s!= $s2) go to Conditional PC branch set on less than slt $s, $s2, $s3 if ($s2 < $s3) $s = ; else $s = Eqal test; PC-relative branch Not eqal test; PC-relative Compare less than; for beq, bne set less than immediate slti $s, $s2, if ( $s2 < ) $s = ; else $s = Compare less than constant jmp j 25 go to Jmp to target address Uncondi- jmp register jr $ra go to $ra For switch, procedre retrn tional jmp jmp and link jal 25 $ra = PC + 4; go to For procedre call 計算システム論第 2 2

3 命令の sbset ADD and SUB addu rd, rs, rt (nsigned) sbu rd, rs, rt 3 OR Immediate: ori rt, rs, imm6 LOAD and STORE Word lw rt, rs, imm6 sw rt, rs, imm6 BRANCH: beq rs, rt, imm op rs rt rd shamt fnct 6 bits 5 bits 5 bits 5 bits 5 bits 6 bits op rs rt immediate 6 bits 5 bits 5 bits 6 bits op rs rt immediate 6 bits 5 bits 5 bits 6 bits 26 命令フォーマット 2 6 op rs rt immediate 6 bits 5 bits 5 bits 6 bits 6 計算システム論第 2 3

4 実現すべき動作 PC (Program Conter) で指定された番地のメモリから命令を取る. PC は +4する ( 分岐命令以外 ) op rs rt rd shamt fnct = E[ PC ] addu, sbu op rs rt Imm6 = E[ PC ] ori, lw, sw, beq 2 つの命令フォーマット 命令 実現すべき動作 addu R[rd] < R[rs] + R[rt]; PC < PC + 4 sbu R[rd] < R[rs] R[rt]; PC < PC + 4 ori R[rt] < OR(R[rs], zero_et(imm6) ); PC < PC + 4 lw R[rt] < E[ R[rs] + sign_et(imm6)]; PC < PC + 4 sw E[ R[rs] + sign_et(imm6) ] < R[rt]; PC < PC + 4 beq if ( R[rs] == R[rt] ) then PC < PC + sign_et(imm6)] else PC < PC + 4 計算システム論第 2 4

5 命令の種類と各ステージにおける処理 Step name fetch decode/register fetch 制御信号の作り方 Action for R-type instrctions Action for memory-reference instrctions IR = emory[pc] PC = PC + 4 A = Reg [IR[25-2]] B = Reg [IR[2-6]] ALUOt = PC + (sign-etend (IR[5-]) << 2) Action for branches Eection, address ALUOt = A op B ALUOt = A + sign-etend if (A ==B) then comptation, branch/ (IR[5-]) PC = ALUOt jmp completion emory access or R-typ Reg [IR[5-]] = Load: DR = emory[aluot] completion ALUOt or Store: emory [ALUOt] = B emory read completion Load: Reg[IR[2-6]] = DR 制御信号は, 命令の種類, および現在のステップ ( 状態 ) に依存 状態遷移機械 (FS : Finite State achine) として記述可能 計算システム論第 2 5

6 データパスと制御論理 PC Address Write data emory emdata [25 2] [2 6] [5 ] register [5 ] emory data register Cond IorD Otpts em emwrite emtoreg IRWrite Control Op [5 ] [5 ] PCSorce ALUOp ALUSrcB 6 ALUSrcA RegWrite RegDst [25 ] Shift left 2 [3-26] PC [3-28] register register 2 Registers Write register Write data Sign etend data data 2 32 Shift left 2 A B ALU control Zero ALU ALU reslt Jmp address [3-] ALUOt 2 [5 ] 計算システム論第 2 6

7 例 : 状態 Step name fetch decode/register fetch Action for R-type instrctions Action for memory-reference instrctions IR = emory[pc] PC = PC + 4 A = Reg [IR[25-2]] B = Reg [IR[2-6]] ALUOt = PC + (sign-etend (IR[5-]) << 2) Action for branches Eection, address ALUOt = A op B ALUOt = A + sign-etend if (A ==B) then comptation, branch/ (IR[5-]) PC = ALUOt jmp completion emory access or R-typ Reg [IR[5-]] = Load: DR = emory[aluot] completion ALUOt or Store: emory [ALUOt] = B emory read completion Load: Reg[IR[2-6]] = DR 計算システム論第 2 7

8 状態 におけるデータの流れ IR = emory[pc], PC=PC+4 PC Address Write data emory emdata [3-26] [25 2] [2 6] [5 ] register [5 ] emory data register Cond IorD Otpts em emwrite emtoreg IRWrite [25 ] Control Op [5 ] [5 ] PCSorce ALUOp ALUSrcB 6 ALUSrcA RegWrite RegDst register register 2 Registers Write register Write data Sign etend data data 2 32 Shift left 2 A B Shift left 2 ALU control PC [3-28] Zero ALU ALU reslt Jmp address [3-] ALUOt 2 [5 ] 必要な制御信号 IorD= (: PC em) ALUsrcA= (: PC ALU) em= ALUsrcB= (: 4 ALU) IRwrite= ALUop= (ALU : 足し算 ) PCwrite= PCSorce= (ALU 出力をPCへ ) 計算システム論第 2 8

9 制御信号の定義 計算システム論第 2 9

10 FS で記述した 制御論理状態 2 emory address comptation ALUSrcA = ALUSrcB = ALUOp = Start fetch em ALUSrcA = IorD = IRWrite ALUSrcB = ALUOp = PCSorce = 6 (Op = 'LW') or (Op = 'SW') Eection ALUSrcA = ALUSrcB = ALUOp= 8 (Op = R-type) Branch completion ALUSrcA = ALUSrcB = ALUOp = Cond PCSorce = decode/ register fetch (Op = 'BEQ') 9 ALUSrcA = ALUSrcB = ALUOp = (Op = 'J') Jmp completion PCSorce = 3 (Op = 'LW') emory access (Op = 'SW') 5 emory access 7 R-type completion em IorD = emwrite IorD = RegDst = RegWrite emtoreg = 4 Write-back step RegDst = RegWrite emtoreg = 計算システム論第 2

11 例 : 状態 Step name fetch decode/register fetch Action for R-type instrctions Action for memory-reference instrctions IR = emory[pc] PC = PC + 4 A = Reg [IR[25-2]] B = Reg [IR[2-6]] ALUOt = PC + (sign-etend (IR[5-]) << 2) Action for branches Eection, address ALUOt = A op B ALUOt = A + sign-etend if (A ==B) then comptation, branch/ (IR[5-]) PC = ALUOt jmp completion emory access or R-typ Reg [IR[5-]] = Load: DR = emory[aluot] completion ALUOt or Store: emory [ALUOt] = B emory read completion Load: Reg[IR[2-6]] = DR 計算システム論第 2

12 状態 におけるデータの流れ A = Reg [IR[25-2]] B = Reg [IR[2-6]] ALUOt = PC + (sign-etend (IR[5-]) << 2) PC Address Write data emory emdata [3-26] [25 2] [2 6] [5 ] register [5 ] emory data register Cond IorD Otpts em emwrite emtoreg IRWrite [25 ] Control Op [5 ] [5 ] PCSorce ALUOp ALUSrcB 6 ALUSrcA RegWrite RegDst register register 2 Registers Write register Write data Sign etend data data 2 32 Shift left 2 A B Shift left 2 ALU control PC [3-28] Zero ALU ALU reslt Jmp address [3-] ALUOt 2 [5 ] 計算システム論第 2 2

13 FSで記述した fetch 制御論理 em ALUSrcA = IorD = IRWrite ALUSrcB = ALUOp = PCSorce = 状態 2 emory address comptation ALUSrcA = ALUSrcB = ALUOp = Start 6 (Op = 'LW') or (Op = 'SW') Eection ALUSrcA = ALUSrcB = ALUOp= 8 (Op = R-type) Branch completion ALUSrcA = ALUSrcB = ALUOp = Cond PCSorce = decode/ register fetch (Op = 'BEQ') 9 ALUSrcA = ALUSrcB = ALUOp = (Op = 'J') Jmp completion PCSorce = 3 (Op = 'LW') emory access (Op = 'SW') 5 emory access 7 R-type completion em IorD = emwrite IorD = RegDst = RegWrite emtoreg = 4 Write-back step RegDst = RegWrite emtoreg = 計算システム論第 2 3

14 状態遷移図の作り方 Step name fetch decode/register fetch Action for R-type instrctions Action for memory-reference instrctions IR = emory[pc] PC = PC + 4 A = Reg [IR[25-2]] B = Reg [IR[2-6]] ALUOt = PC + (sign-etend (IR[5-]) << 2) Action for branches Eection, address ALUOt = A op B ALUOt = A + sign-etend if (A ==B) then comptation, branch/ 6 2 (IR[5-]) PC = ALUOt jmp completion emory access or R-typ Reg [IR[5-]] = Load: DR = emory[aluot] completion 7 ALUOt or 5 Store: emory [ALUOt] = B emory read completion 3 4 Load: Reg[IR[2-6]] = DR ステップ間の因果関係を状態遷移図で表す 8 計算システム論第 2 4

15 wired logic ( 布線論理 ) を用いた制御回路の実現 Op5 Op4 組み合わせ論理を PLA で記述 Op3 Op2 Op O p 5 O p 4 組み合わせ回路 C o n t r o l l o g i c O p 3 O p 2 O p I n s t r c t i o n r e g i s t e r o p c o d e f i e l d I n p t s O p 命令内の op フィールド S 3 S 2 O t p t s S S S t a t e r e g i s t e r P C W r i t e P C W r i t e C o n d I o r D e m R e a d e m W r i t e I R W r i t e e m t o R e g P C S o r c e A L U O p A L U S r c B A L U S r c A R e g W r i t e R e g D s t N S 3 N S 2 N S N S 4 ビットで 9 状態 Op S3 S2 S S AND 平面 Cond IorD em emwrite IRWrite emtoreg PCSorce PCSorce ALUOp ALUOp ALUSrcB ALUSrcB ALUSrcA RegWrite RegDst NS3 NS2 NS NS RegWrite=^S3 S2 ^S ^S + ^S3 S2 S S OR 平面 計算システム論第 2 5

16 RegWrite は? 状態 4() と状態 7() 2 ^S3 S2 ^S ^S + ^S3 S2 S S 3 emory address comptation ALUSrcA = ALUSrcB = ALUOp = (Op = 'LW') emory access (Op = 'SW') 5 Start emory access fetch em ALUSrcA = IorD = IRWrite ALUSrcB = ALUOp = PCSorce = 6 (Op = 'LW') or (Op = 'SW') 7 Eection ALUSrcA = ALUSrcB = ALUOp= 8 R-type completion (Op = R-type) Branch completion ALUSrcA = ALUSrcB = ALUOp = Cond PCSorce = (Op = 'BEQ') decode/ register fetch 9 ALUSrcA = ALUSrcB = ALUOp = (Op = 'J') Jmp completion PCSorce = em IorD = emwrite IorD = RegDst = RegWrite emtoreg = 4 Write-back step RegDst = RegWrite emtoreg = 計算システム論第 2 6

17 microprogram による制御論理の実現 C o n t r o l n i t i c r o c o d e m e m o r y マイクロ命令を格納 I n p t O t p t s P C W r i t e P C W r i t e C o n d I o r D e m R e a d e m W r i t e I R W r i t e B W r i t e e m t o R e g P C S o r c e A L U O p A L U S r c B A L U S r c A R e g W r i t e R e g D s t A d d r C t l D a t a p a t h A d d e r 次に実行すべきマイクロ命令を指定 i c r o p r o g r a m c o n t e r A d d r e s s s e l e c t l o g i c O p [ 5 ] A d d e r microcode memory microprogram conter 3 2 A d r C t l I n s t r c t i o n r e g i s t e r o p c o d e f i e l d D i s p a t c h R O 2 D i s p a t c h R O A d d r e s s s e l e c t l o g i c O p I n s t r c t i o n r e g i s t e r o p c o d e f i e l d 計算システム論第 2 7

18 microprogram による制御論理の実現 Dispatch RO Op Opcode name Vale R-format jmp beq lw sw Dispatch RO 2 Op Opcode name Vale lw sw Label ALU control SRC SRC2 Register control emory control Seqencing Fetch Add PC 4 PC ALU Seq Add PC Etshft Dispatch em Add A Etend Dispatch 2 LW2 ALU Seq Write DR Fetch SW2 Write ALU Fetch Rformat Fnc code A B Seq Write ALU Fetch BEQ Sbt A B ALUOt-cond Fetch JUP Jmp address Fetch データパスに与える制御信号 microcode memory に保持される microcode 次のマイクロ命令を指定 計算システム論第 2 8

19 microcode のフォーマット Field name Vale Signals active Comment Add ALUOp = Case the ALU to add. ALU control Sbt ALUOp = Case the ALU to sbtract; this implements the compare for branches. Fnc code ALUOp = Use the instrction's fnction code to determine ALU control. SRC PC ALUSrcA = Use the PC as the first ALU inpt. A ALUSrcA = Register A is the first ALU inpt. B ALUSrcB = Register B is the second ALU inpt. SRC2 4 ALUSrcB = Use 4 as the second ALU inpt. Etend ALUSrcB = Use otpt of the sign etension nit as the second ALU inpt. Etshft ALUSrcB = Use the otpt of the shift-by-two nit as the second ALU inpt. two registers sing the rs and rt fields of the IR as the register nmbers and ptting the data into registers A and B. Write ALU RegWrite, Write a register sing the rd field of the IR as the register nmber and Register RegDst =, the contents of the ALUOt as the data. control emtoreg = Write DR RegWrite, Write a register sing the rt field of the IR as the register nmber and RegDst =, the contents of the DR as the data. emtoreg = PC em, memory sing the PC as address; write reslt into IR (and lord = the DR). emory ALU em, memory sing the ALUOt as address; write reslt into DR. lord = Write ALU emwrite, Write memory sing the ALUOt as address, contents of B as the lord = data. ALU PCSorce = Write the otpt of the ALU into the PC. PC write control ALUOt-cond PCSorce =, If the Zero otpt of the ALU is active, write the PC with the contents Cond of the register ALUOt. jmp address PCSorce =, Write the PC with the jmp address from the instrction. Seq AddrCtl = Choose the net microinstrction seqentially. Seqencing Fetch AddrCtl = Go to the first microinstrction to begin a new instrction. Dispatch AddrCtl = Dispatch sing the RO. Dispatch 2 AddrCtl = Dispatch sing the RO 2. 計算システム論第 2 9

20 水平 vs. 垂直マイクロプログラム 2bit bit 2bit 3bit 3bit 4bit 2bit Label ALU control SRC SRC2 Register control emory control Seqencing Fetch Add PC 4 PC ALU Seq Add PC Etshft Dispatch em Add A Etend Dispatch 2 LW2 ALU Seq Write DR Fetch SW2 Write ALU Fetch Rformat Fnc code A B Seq Write ALU Fetch BEQ Sbt A B ALUOt-cond Fetch JUP Jmp address Fetch bit 折りたたんでフィールドを共有する 2bit bit 2bit 3bit 2bit ALU Register Label U/L control SRC SRC2 control Seqencing 命令ステップは U/L emory PC Write Control Fetch U Add PC 4 Seq 僅かプラス2 L PC ALU Seq U Add PC Etshft Dispatch ' em U Add A Etend Dispatch 2' マイクロ命令用 LW2 L ALU Seq U Write DR Fetch メモリ量減少 SW2 L Write ALU Fetch Rformat U Fnc code A B Seq 7bit = 7bit L Write ALU Fetch BEQ U Sbt A B Seq bit 2 = 32bit L ALU Ot-Cond Fetch JUP L Jmp address計算システム論第 Fetch 2 2

Topics: A multiple cycle implementation. Distributed Notes

Topics: A multiple cycle implementation. Distributed Notes COSC 22: Compter Organization Instrctor: Dr. Amir Asif Department of Compter Science York University Handot # lticycle Implementation of a IPS Processor Topics: A mltiple cycle implementation Distribted

More information

Designing MIPS Processor

Designing MIPS Processor CSE 675.: Introdction to Compter Architectre Designing IPS Processor (lti-cycle) Presentation H Reading Assignment: 5.5,5.6 lti-cycle Design Principles Break p eection of each instrction into steps. The

More information

Instruction register. Data. Registers. Register # Memory data register

Instruction register. Data. Registers. Register # Memory data register Where we are headed Single Cycle Problems: what if we had a more complicated instrction like floating point? wastefl of area One Soltion: se a smaller cycle time have different instrctions take different

More information

Review. Combined Datapath

Review. Combined Datapath Review Topics:. A single cycle implementation 2. State Diagrams. A mltiple cycle implementation COSC 22: Compter Organization Instrctor: Dr. Amir Asif Department of Compter Science York University Handot

More information

Reactive Fluid Dynamics 1 G-COE 科目 複雑システムのデザイン体系 第 1 回 植田利久 慶應義塾大学大学院理工学研究科開放環境科学専攻 2009 年 4 月 14 日. Keio University

Reactive Fluid Dynamics 1 G-COE 科目 複雑システムのデザイン体系 第 1 回 植田利久 慶應義塾大学大学院理工学研究科開放環境科学専攻 2009 年 4 月 14 日. Keio University Reactive Fluid Dynamics 1 G-COE 科目 複雑システムのデザイン体系 第 1 回 植田利久 慶應義塾大学大学院理工学研究科開放環境科学専攻 2009 年 4 月 14 日 Reactive Fluid Dynamics 2 1 目的 本 G-COE で対象とする大規模複雑力学系システムを取り扱うにあたって, 非線形力学の基本的な知識と応用展開力は不可欠である. そこで,

More information

2011/12/25

2011/12/25 Outline [] Control Technologies for Ocean Engineering Control technologies as the second axis Kyushu University Prof. H.Kajiwara (.8,at PNU) LQI Control Linear-Quadratic- Integral Design of Linear-Time-

More information

Designing Single-Cycle MIPS Processor

Designing Single-Cycle MIPS Processor CSE 32: Introdction to Compter Architectre Designing Single-Cycle IPS Processor Presentation G Stdy:.-. Gojko Babić 2/9/28 Introdction We're now ready to look at an implementation of the system that incldes

More information

CSE Computer Architecture I

CSE Computer Architecture I Execution Sequence Summary CSE 30321 Computer Architecture I Lecture 17 - Multi Cycle Control Michael Niemier Department of Computer Science and Engineering Step name Instruction fetch Instruction decode/register

More information

CMB の温度 偏光揺らぎにおける弱い重力レンズ効果 並河俊弥 ( 東京大学 )

CMB の温度 偏光揺らぎにおける弱い重力レンズ効果 並河俊弥 ( 東京大学 ) CMB の温度 偏光揺らぎにおける弱い重力レンズ効果 再構築法の開発 並河俊弥 ( 東京大学 ) 201 1 第 41 回天文 天体物理若手夏の学校 2011/08/01-04 CMB lensing の宇宙論への応用 暗黒エネルギー ニュートリノ質量など 比較的高赤方偏移の揺らぎに感度をもつ 光源の性質がよく分かっている 他の観測と相補的 原始重力波 TN+ 10 重力レンズ由来の B-mode

More information

英語問題 (60 分 ) 受験についての注意 3. 時計に組み込まれたアラーム機能 計算機能 辞書機能などを使用してはならない 4. 試験開始前に 監督から指示があったら 解答用紙の受験番号欄の番号が自身の受験番号かどうかを確認し 氏名を記入すること

英語問題 (60 分 ) 受験についての注意 3. 時計に組み込まれたアラーム機能 計算機能 辞書機能などを使用してはならない 4. 試験開始前に 監督から指示があったら 解答用紙の受験番号欄の番号が自身の受験番号かどうかを確認し 氏名を記入すること (2018 年度一般入試 A) 英語問題 (60 分 ) ( この問題冊子は 8 ページである ) 受験についての注意 1. 監督の指示があるまで 問題を開いてはならない 2. 携帯電話 PHS の電源は切ること 3. 時計に組み込まれたアラーム機能 計算機能 辞書機能などを使用してはならない 4. 試験開始前に 監督から指示があったら 解答用紙の受験番号欄の番号が自身の受験番号かどうかを確認し 氏名を記入すること

More information

日本政府 ( 文部科学省 ) 奨学金留学生申請書

日本政府 ( 文部科学省 ) 奨学金留学生申請書 A PP L IC AT IO N J AP A N ESE G O VE R NMENT ( M ONB UK AG AK US HO :M EXT)SC H OL A RS H IP F O R 2 0 1 6 日本政府 ( 文部科学省 ) 奨学金留学生申請書 Undergraduate Students ( 学部留学生 ) INSTRUCTIONS( 記入上の注意 ) 1.Type application,

More information

シミュレーション物理 6 運動方程式の方法 : 惑星の軌道 出席のメール ( 件名に学生番号と氏名 ) に, 中点法をサブルーチンを使って書いたプログラムを添付

シミュレーション物理 6 運動方程式の方法 : 惑星の軌道 出席のメール ( 件名に学生番号と氏名 ) に, 中点法をサブルーチンを使って書いたプログラムを添付 シミュレーション物理 6 運動方程式の方法 : 惑星の軌道 出席のメール ( 件名に学生番号と氏名 ) に, 中点法をサブルーチンを使って書いたプログラムを添付 今回の授業の目的 4 次のRunge-Kutta 法を用いて, 惑星の軌道のシミュレーションを行う 2 d r GMm m = r 2 3 dt r 2 d r GM = 2 (using angular momentum cons.) 2

More information

Agilent 4263B LCR Meter Operation Manual. Manual Change. Change 1 Add TAR in Test Signal Frequency Accuracy Test (Page 9-38) as follows.

Agilent 4263B LCR Meter Operation Manual. Manual Change. Change 1 Add TAR in Test Signal Frequency Accuracy Test (Page 9-38) as follows. Agilent 4263B LCR Meter Operation Manual Manual Change Agilent Part No. N/A Jun 2009 Change 1 Add TAR in Test Signal Frequency Accuracy Test (Page 9-38) as follows. Test Signal Frequency Accuracy Frequency

More information

Report on the experiment of vibration measurement of Wire Brushes. mounted on hand held power tools ワイヤ ブラシ取付け時の手持動力工具振動測定調査の実施について

Report on the experiment of vibration measurement of Wire Brushes. mounted on hand held power tools ワイヤ ブラシ取付け時の手持動力工具振動測定調査の実施について Report on the experiment of vibration measurement of Wire Brushes mounted on hand held power tools ワイヤ ブラシ取付け時の手持動力工具振動測定調査の実施について In this report, the purpose of the experiment is to clarify the vibration

More information

車載用高効率燃焼圧センサー基板に最適なランガサイト型結晶の開発 結晶材料化学研究部門 シチズンホールディングス ( 株 )* 宇田聡 八百川律子 * Zhao Hengyu 前田健作 野澤純 藤原航三

車載用高効率燃焼圧センサー基板に最適なランガサイト型結晶の開発 結晶材料化学研究部門 シチズンホールディングス ( 株 )* 宇田聡 八百川律子 * Zhao Hengyu 前田健作 野澤純 藤原航三 車載用高効率燃焼圧センサー基板に最適なランガサイト型結晶の開発 結晶材料化学研究部門 シチズンホールディングス ( 株 )* 宇田聡 八百川律子 * Zhao Hengyu 前田健作 野澤純 藤原航三 概要車載用燃焼圧センサー用として高抵抗を示すランガサイト型圧電結晶をデザインした すなわち4 元系のランガサイト型結晶 CNGS の適正組成をイオン半径 結晶構成要素の結晶サイト存在に関する自由度 および

More information

京都 ATLAS meeting 田代. Friday, June 28, 13

京都 ATLAS meeting 田代. Friday, June 28, 13 京都 ATLAS meeting 0.06.8 田代 Exotic search GUT heavy gauge boson (W, Z ) Extra dimensions KK particles Black hole Black hole search (A 模型による )Extra dimension が存在する場合 parton 衝突で black hole が生成される Hawking

More information

GRASS 入門 Introduction to GRASS GIS

GRASS 入門 Introduction to GRASS GIS 40 th GIS seminar GRASS 入門 Introduction to GRASS GIS 筑波大学生命環境科学研究科地球環境科学専攻空間情報科学分野 花島裕樹 email:hanashima@geoenv.tsukuba.ac.jp http://grass.osgeo.org/ 18 th December, 2008 Geographic Resource Analysis Support

More information

Mathematics 数理科学専修. welcome to 統合数理科学を 目 指 す 基礎理工学専攻

Mathematics 数理科学専修. welcome to 統合数理科学を 目 指 す 基礎理工学専攻 数理科学専修 統合数理科学を 目 指 す welcome to Mathematics 数理科学 とは 数学および数学と諸科学との関係領域に構築 された学問分野の総称であり 数学理論 いわゆる純粋数学 の探求ともに 現実現象の記述 抽象化 定式化 モデル化 の開発にも重点を置くものです 1981年 慶應義塾は他大学にさきがけてを設置し ましたが 数理科学はあらゆる科学技術を語る共通の言葉とし て 理工学はもちろん

More information

CPU DESIGN The Single-Cycle Implementation

CPU DESIGN The Single-Cycle Implementation 22 ompter Organization Seqential vs. ombinational ircits Digital circits can be classified into two categories: DESIGN The Single-ycle Implementation. ombinational ircits: m, 2. Seqential ircits: flip-flops,

More information

2015 年度研究活動報告理工学術院 先進理工 応用物理学科小澤徹 Department of Applied Physics, Waseda University

2015 年度研究活動報告理工学術院 先進理工 応用物理学科小澤徹 Department of Applied Physics, Waseda University 2015 年度研究活動報告理工学術院 先進理工 応用物理学科小澤徹 Tohru OZAWA Department of Applied Physics, Waseda University 出版された論文 R. Carles, T. Ozawa Finite time extinction for nonlinear Schrödinger equation in 1D and 2D, Commun.

More information

WHO 飲料水水質ガイドライン第 4 版 ( 一部暫定仮訳 ) 第 9 章放射線学的観点 9.4 飲料水中で一般的に検出される放射性核種のガイダンスレベル 過去の原子力緊急事態に起因する長期被ばく状況に関連する可能性のある人工の放射性核種のみならず 飲料水供給で最も一般的に検出される自然由来及び人工

WHO 飲料水水質ガイドライン第 4 版 ( 一部暫定仮訳 ) 第 9 章放射線学的観点 9.4 飲料水中で一般的に検出される放射性核種のガイダンスレベル 過去の原子力緊急事態に起因する長期被ばく状況に関連する可能性のある人工の放射性核種のみならず 飲料水供給で最も一般的に検出される自然由来及び人工 WHO 飲料水水質ガイドライン第 4 版 ( 一部暫定仮訳 ) 第 9 章放射線学的観点 9.4 飲料水中で一般的に検出される放射性核種のガイダンスレベル 過去の原子力緊急事態に起因する長期被ばく状況に関連する可能性のある人工の放射性核種のみならず 飲料水供給で最も一般的に検出される自然由来及び人工の放射性核種について定められたガイダンスレベルを表 9.2 に示す それぞれの成人の線量換算係数もまた示されている

More information

BCR30AM-12LB. RJJ03G Rev I T(RMS) 30 A V DRM 600 V I FGT I, I RGT I, I RGT III 50 ma : PRSS0004ZE-A ( : TO-3P) 4 2, 4

BCR30AM-12LB. RJJ03G Rev I T(RMS) 30 A V DRM 600 V I FGT I, I RGT I, I RGT III 50 ma : PRSS0004ZE-A ( : TO-3P) 4 2, 4 BCRAM-1LB ( 1 C ) RJJG- Rev...11. I T(RMS) A V DRM 6 V I FGT I, I RGT I, I RGT III ma : PRSSZE-A ( : TO-P), 1 1. T 1. T.. T 1 1.. 1 C 1 C 1 * 1 V DRM 6 V * 1 V DSM V I T(RMS) A Tc = C I TSM A 6Hz 1 I t

More information

Taking an advantage of innovations in science and technology to develop MHEWS

Taking an advantage of innovations in science and technology to develop MHEWS Taking an advantage of innovations in science and technology to develop MHEWS Masashi Nagata Meteorological Research Institute, Tsukuba, Ibaraki, Japan Japan Meteorological Agency 1 Why heavy rainfalls

More information

C-H Activation in Total Synthesis Masayuki Tashiro (M1)

C-H Activation in Total Synthesis Masayuki Tashiro (M1) 1 C-H Activation in Total Synthesis Masayuki Tashiro (M1) 21 st Jun. 2014 Does a late-stage activation of unactivated C-H bond shorten a total synthesis?? 2 3 Contents 1. Comparison of Two Classical Strategies

More information

Thermal Safety Software (TSS) series

Thermal Safety Software (TSS) series Ready-solutions Thermal Safety Software (TSS) series 各種の反応危険性評価ソフト The subset for adiabatic calorimetry ( 断熱測定データ解析ソリューション ) 断熱熱量計 (ARC VSP DEWAR) 等は 化学反応の熱的危険性評価に有効であることが知られています このソリューションは 断熱下で測定した熱量データを多目的に解析するために

More information

( 主査 ) 教授髙橋秀幸教授山口信次郎准教授佐藤修正

( 主査 ) 教授髙橋秀幸教授山口信次郎准教授佐藤修正 氏名 ( 本籍地 ) 学 位 の 種 類 学 位 記 番 号 学位授与年月日 学位授与の要件 研究科, 専攻 論 文 題 目 ぱんれい 庞磊博士 ( 生命科学 ) 生博第 337 号平成 29 年 3 月 24 日学位規則第 4 条第 1 項該当東北大学大学院生命科学研究科 ( 博士課程 ) 生態システム生命科学専攻 Analyses of Functional Tissues and Hormonal

More information

Photoacclimation Strategy in Photosystem II of Prymnesiophyceae Isochrysis galbana

Photoacclimation Strategy in Photosystem II of Prymnesiophyceae Isochrysis galbana Photoacclimation Strategy in Photosystem II of Prymnesiophyceae Isochrysis galbana プリムネシウム藻綱 Isochrysis galbana の光化学系 II における光適応戦略 6D551 小幡光子 指導教員山本修一 SYNOPSIS 海洋に生息する藻類は 海水の鉛直混合や昼夜により 弱光から強光までの様々な光強度

More information

Day 5. A Gem of Combinatorics 組合わせ論の宝石. Proof of Dilworth s theorem Some Young diagram combinatorics ヤング図形の組合せ論

Day 5. A Gem of Combinatorics 組合わせ論の宝石. Proof of Dilworth s theorem Some Young diagram combinatorics ヤング図形の組合せ論 Day 5 A Gem of Combinatorics 組合わせ論の宝石 Proof of Dilworth s theorem Some Young diagram combinatorics ヤング図形の組合せ論 Recall the last lecture and try the homework solution 復習と宿題確認 Partially Ordered Set (poset)

More information

The unification of gravity and electromagnetism.

The unification of gravity and electromagnetism. The unification of gravity and electromagnetism. (The physics of dark energy.) Terubumi Honjou The 9 chapter. The unification of gravity and electromagnetism. [1]... to the goal of modern physics and the

More information

むらの定量化について IEC-TC110 HHG2 への提案をベースに ソニー株式会社冨岡聡 フラットパネルディスプレイの人間工学シンポジウム

むらの定量化について IEC-TC110 HHG2 への提案をベースに ソニー株式会社冨岡聡 フラットパネルディスプレイの人間工学シンポジウム むらの定量化について IEC-TC110 HHG2 への提案をベースに ソニー株式会社冨岡聡 むら を 定量化する とは? どちらも輝度分布の最大最小の差は 22% 画面の 4 隅に向かって暗くなる状態は 気にならない 気になるもの むら むら とは人の主観である 気になる要素 を見出し 計測可能にする SEMU: 既存の定量評価方法 SEMI: 半導体 FPD ナノテクノロジー MEMS 太陽光発電

More information

Advance Publication by J-STAGE. 日本機械学会論文集 Transactions of the JSME (in Japanese)

Advance Publication by J-STAGE. 日本機械学会論文集 Transactions of the JSME (in Japanese) Advance Publication by J-STAGE 日本機械学会論文集 Transactions of the JSME (in Japanese) DOI:10.1299/transjsme.16-00058 Received date : 24 February, 2016 Accepted date : 6 September, 2016 J-STAGE Advance Publication

More information

谷本俊郎博士の研究業績概要 谷本俊郎博士は これまで地球内部の大規模なマントルの対流運動を解明するための研究 および 大気 - 海洋 - 固体地球の相互作用に関する研究を様々な角度から進めてきた これらのうち主要な研究成果は 以下の様にまとめることができる

谷本俊郎博士の研究業績概要 谷本俊郎博士は これまで地球内部の大規模なマントルの対流運動を解明するための研究 および 大気 - 海洋 - 固体地球の相互作用に関する研究を様々な角度から進めてきた これらのうち主要な研究成果は 以下の様にまとめることができる 谷本俊郎博士の研究業績概要 谷本俊郎博士は これまで地球内部の大規模なマントルの対流運動を解明するための研究 および 大気 - 海洋 - 固体地球の相互作用に関する研究を様々な角度から進めてきた これらのうち主要な研究成果は 以下の様にまとめることができる 1. 地球内部の全球的 3 次元構造とマントル対流プレートテクトニクスによる地球表面の運動が GPS 等の測地観測によってリアルタイムでわかるようになってきた現在

More information

Deep moist atmospheric convection in a subkilometer

Deep moist atmospheric convection in a subkilometer Deep moist atmospheric convection in a subkilometer global simulation Yoshiaki Miyamoto, Yoshiyuki Kajikawa, Ryuji Yoshida, Tsuyoshi Yamaura, Hisashi Yashiro, Hirofumi Tomita (RIKEN AICS) I. Background

More information

Spontaneous magnetization of quark matter in the inhomogeneous chiral phase

Spontaneous magnetization of quark matter in the inhomogeneous chiral phase Spontaneous agnetization of uar atter in the inhoogeneous chiral phase arxiv:7. [hep-ph] Ryo Yoshiie (Kyoto University) collaborator:kazuya Nishiyaa oshitaa atsui XQCD 9/@CCNU QCD phase diagra and chiral

More information

Yutaka Shikano. Visualizing a Quantum State

Yutaka Shikano. Visualizing a Quantum State Yutaka Shikano Visualizing a Quantum State Self Introduction http://qm.ims.ac.jp 東京工業大学 ( 大岡山キャンパス ) 学部 4 年間 修士課程 博士課程と通ったところです 宇宙物理学理論研究室というところにいました マサチューセッツ工科大学 博士課程の際に 機械工学科に留学していました (1 年半 ) チャップマン大学

More information

一体型地上気象観測機器 ( ) の風計測性能評価 EVALUATION OF WIND MEASUREMENT PERFORMANCE OF COMPACT WEATHER SENSORS

一体型地上気象観測機器 ( ) の風計測性能評価 EVALUATION OF WIND MEASUREMENT PERFORMANCE OF COMPACT WEATHER SENSORS 第 23 回風工学シンポジウム (2014) 一体型地上気象観測機器 ( ) の風計測性能評価 EVALUATION OF WIND MEASUREMENT PERFORMANCE OF COMPACT WEATHER SENSORS 1) 2) 3) 4) 5) 吉田大紀 林 泰一 伊藤芳樹 林 夕路 小松亮介 1) 4) 4) 1) 1) 寺地雄輔 太田行俊 田村直美 橋波伸治 渡邉好弘 Daiki

More information

Evaluation of IGS Reprocessed Precise Ephemeris Applying the Analysis of the Japanese Domestic GPS Network Data

Evaluation of IGS Reprocessed Precise Ephemeris Applying the Analysis of the Japanese Domestic GPS Network Data Evaluation of IGS Reprocessed Precise Ephemeris Applying the Analysis of the Japanese Domestic GPS Network Data Seiichi SHIMADA * Abstract The IGS reprocessed GPS precise ephemeris (repro1) is evaluated

More information

11/13 Diagonalization. Theorem: The set R of all real numbers is not enumerable. 12/13. 0.a k1 a k2 a k3... where a ij {0, 1,...

11/13 Diagonalization. Theorem: The set R of all real numbers is not enumerable. 12/13. 0.a k1 a k2 a k3... where a ij {0, 1,... 対角線論法 可算無限集合 : 自然数全体の集合との間に 対 対応がある集合のこと. 可算集合 : 有限または可算無限である集合のこと. つまり, つずつ要素を取り出してきて, もれなく書き並べられるもの 例. 正の偶数全体の集合 E は可算無限である. 自然数全体の集合 N の要素 と,E の要素 2 を対とする 対 対応がある. 例 2. 整数全体の集合 Z は可算無限である. 対 対応がある.

More information

ATLAS 実験における荷電ヒッグス粒子の探索

ATLAS 実験における荷電ヒッグス粒子の探索 1 ATLAS 実験における荷電ヒッグス粒子の探索 筑波大学大学院数理物質科学研究科物理学専攻博士後期課程 3 年永田和樹 2016 年 1 月 19 日 CiRfSE workshop 重い荷電ヒッグス粒子探索 2 もし 荷電ヒッグス粒子の発見できたら 標準理論を超える物理の存在の証明 例 :Minimal Supersymmetric Standard Model (MSSM) 重い荷電ヒッグス粒子探索

More information

統合シミュレーションコードによる高速点火実験解析大阪大学レーザーエネルギー学研究センター中村龍史

統合シミュレーションコードによる高速点火実験解析大阪大学レーザーエネルギー学研究センター中村龍史 統合シミュレーションコードによる高速点火実験解析大阪大学レーザーエネルギー学研究センター中村龍史 概要 高速点火核融合ではターゲット爆縮から追加熱用レーザーによる高速電子発生まで時間 空間スケールにおいて非常に広範な領域の現象を理解する必要がある そこで本プロジェクトでは輻射流体コード 粒子コード Fokker-Planck コード の開発が進められており これらのコードをネットワークを介して結合することで統合コードの構築を目指している

More information

October 7, Shinichiro Mori, Associate Professor

October 7, Shinichiro Mori, Associate Professor The areas of landslides and affected buildings and houses within those areas, in and around Palu City during Sulawesi Earthquake on September 28, 2018 specified by an analysis based on satellite imagery

More information

重力波天体の多様な観測による 宇宙物理学の新展開 勉強会 熱海 銀河における元素量の観測. 青木和光 Wako Aoki. 国立天文台 National Astronomical Observatory of Japan

重力波天体の多様な観測による 宇宙物理学の新展開 勉強会 熱海 銀河における元素量の観測. 青木和光 Wako Aoki. 国立天文台 National Astronomical Observatory of Japan 重力波天体の多様な観測による 宇宙物理学の新展開 勉強会 2013.1.8. 熱海 銀河における元素量の観測 青木和光 Wako Aoki 国立天文台 National Astronomical Observatory of Japan 銀河における元素量の観測 中性子星合体によってどのような元素合成が起こ るか とくにr-processのサイトか 化学進化への影響は 化学組成と金属量 化学組成 元素量

More information

Neutron-Insensitive Gamma-Ray Detector with Aerogel for Rare Neutral-Kaon Decay Experiment

Neutron-Insensitive Gamma-Ray Detector with Aerogel for Rare Neutral-Kaon Decay Experiment Neutron-Insensitive Gamma-Ray Detector with Aerogel for Rare Neutral-Kaon Decay Experiment Kyoto University E-mail: maeda_y@scphys.kyoto-u.ac.jp A novel γ-ray detector insensitive to neutrons is developed

More information

Introduction to Multi-hazard Risk-based Early Warning System in Japan

Introduction to Multi-hazard Risk-based Early Warning System in Japan Introduction to Multi-hazard Risk-based Early Warning System in Japan Yasuo SEKITA (Mr) Director-General, Forecast Department Japan Meteorological Agency (JMA) Natural Disasters in Asia Source: Disasters

More information

非弾性散乱を利用した不安定核 核構造研究 佐藤義輝東京工業大学

非弾性散乱を利用した不安定核 核構造研究 佐藤義輝東京工業大学 非弾性散乱を利用した不安定核 核構造研究 佐藤義輝東京工業大学 Unbound excited states in,17 C Ground state deformation property of carbon isotopes Y.Satou et al., Phys. Lett. B 660, 320(2008). Be BC Li H He Ne O F N N=8 C 17 C Neutron

More information

Illustrating SUSY breaking effects on various inflation models

Illustrating SUSY breaking effects on various inflation models 7/29 基研研究会素粒子物理学の進展 2014 Illustrating SUSY breaking effects on various inflation models 山田悠介 ( 早稲田大 ) 共同研究者安倍博之 青木俊太朗 長谷川史憲 ( 早稲田大 ) H. Abe, S. Aoki, F. Hasegawa and Y. Y, arxiv:1408.xxxx 7/29 基研研究会素粒子物理学の進展

More information

超新星残骸からの陽子起源ガンマ線 放射スペクトルの変調機構

超新星残骸からの陽子起源ガンマ線 放射スペクトルの変調機構 超新星残骸からの陽子起源ガンマ線 放射スペクトルの変調機構 名古屋大学理学研究科 井上剛志 今日の話とは別の成果 : Inoue, Hennebelle, Fukui, Matsumoto, Iwasaki, Inutsuka 2018, PASJ Special issue, arxiv: 1707.02035 IntroducGon to RX J1713.7-3946 p SNR: RX J1713.7-3946:

More information

Estimation of Gravel Size Distribution using Contact Time

Estimation of Gravel Size Distribution using Contact Time ISSN 386-1678 Report of the Research Institute of Industrial Technology, Nihon University Number 97, 212 Estimation of Gravel Size Distribution using Contact Time Akira ODA*, Yuya HIRANO**, Masanori WATANABE***

More information

マテリアルズインフォマティクスの最前線 吉田 亮. サイエンティフィック システム研究会 科学技術計算分科会 2017年度会合

マテリアルズインフォマティクスの最前線 吉田 亮. サイエンティフィック システム研究会 科学技術計算分科会 2017年度会合 サイエンティフィック システム研究会 科学技術計算分科会 2017年度会合 マテリアルズインフォマティクスの最前線 吉田 亮 1,2,3,4 yoshidar@ism.ac.jp 情報 システム研究機構 統計数理研究所 モデリング研究系 准教授 情報 システム研究機構 統計数理研究所 ものづくりデータ科学研究センター センター長 3 総合研究大学院大学 複合科学研究科 統計科学専攻 准教授 4 物質

More information

Development of Advanced Simulation Methods for Solid Earth Simulations

Development of Advanced Simulation Methods for Solid Earth Simulations Chapter 1 Earth Science Development of Advanced Simulation Methods for Solid Earth Simulations Project Representative Mikito Furuichi Department of Mathematical Science and Advanced Technology, Japan Agency

More information

PROTEUS, AND THE NAME OF THE TYPE SPECIES OP THE GENUS HUENIA

PROTEUS, AND THE NAME OF THE TYPE SPECIES OP THE GENUS HUENIA H HUENIA {^ERALDICA,THE CORRECT NAME FOR HUENIA PROTEUS, AND THE NAME OF THE TYPE SPECIES OP THE GENUS HUENIA しノ. by L. B, HOLTHUIS CRUSTACEA SMITH^IB^^ISf RETURN fo W-l 妙. V, i コノハガニの学名について L. B. ホノレトイス.

More information

Effects of pairing correlation on the low-lying quasiparticle resonance in neutron drip-line nuclei

Effects of pairing correlation on the low-lying quasiparticle resonance in neutron drip-line nuclei 2016/09/13 INPC2016 @ Adelaide 1 Effects of pairing correlation on the low-lying quasiparticle resonance in neutron drip-line nuclei Back ground Prog. Theor. Exp. Phys. 2016, 013D01 Yoshihiko Kobayashi

More information

21 点 15 点 3 解答用紙に氏名と受検番号を記入し, 受検番号と一致したマーク部分を塗りつぶすこと 受検番号が 0( ゼロ ) から始まる場合は,0( ゼロ ) を塗りつぶすこと

21 点 15 点 3 解答用紙に氏名と受検番号を記入し, 受検番号と一致したマーク部分を塗りつぶすこと 受検番号が 0( ゼロ ) から始まる場合は,0( ゼロ ) を塗りつぶすこと 平成 29 年度入学者選抜学力検査問題 英 語 ( 配点 ) 1 2 3 4 5 6 10 点 15 点 24 点 15 点 15 点 21 点 ( 注意事項 ) 1 問題冊子は指示があるまで開かないこと 2 問題冊子は 1 ページから 8 ページまでです 検査開始の合図のあとで確かめること 3 解答用紙に氏名と受検番号を記入し, 受検番号と一致したマーク部分を塗りつぶすこと 受検番号が 0( ゼロ

More information

On Attitude Control of Microsatellite Using Shape Variable Elements 形状可変機能を用いた超小型衛星の姿勢制御について

On Attitude Control of Microsatellite Using Shape Variable Elements 形状可変機能を用いた超小型衛星の姿勢制御について The 4th Workshop on JAXA: Astrodynamics and Flight Mechanics, Sagamihara, July 015. On Attitude Control of Microsatellite Using Shape Variable Elements By Kyosuke Tawara 1) and Saburo Matunaga ) 1) Department

More information

Network of Evolutionary Trends and Maturity assessment through contradiction analysis 進化トレンドのネットワークと矛盾解析による成熟度評価

Network of Evolutionary Trends and Maturity assessment through contradiction analysis 進化トレンドのネットワークと矛盾解析による成熟度評価 Knowledge Aided Engineering Manufacturing and Related Technologies 和訳 : 井上淳 ( 東芝 ) 中川徹 ( 大阪学院大 ) Network of Evolutionary Trends and Maturity assessment through contradiction analysis 進化トレンドのネットワークと矛盾解析による成熟度評価

More information

Computer Engineering Department. CC 311- Computer Architecture. Chapter 4. The Processor: Datapath and Control. Single Cycle

Computer Engineering Department. CC 311- Computer Architecture. Chapter 4. The Processor: Datapath and Control. Single Cycle Computer Engineering Department CC 311- Computer Architecture Chapter 4 The Processor: Datapath and Control Single Cycle Introduction The 5 classic components of a computer Processor Input Control Memory

More information

Algorithm Theoretical Basis Document for Cloud Top Height Product

Algorithm Theoretical Basis Document for Cloud Top Height Product Algorithm Theoretical Basis Document for Cloud Top Height Product MOURI Kouki*, SUZUE Hiroshi*, YOSHIDA Ryo* and IZUMI Toshiharu** Abstract The cloud top height product is an element of the fundamental

More information

Trends of the National Spatial Data Infrastructure

Trends of the National Spatial Data Infrastructure Trends of the National Spatial Data Infrastructure YoungJoo Lee 2009. 6. 8 Contents Introductions - Definitions of NSDI - Components of NSDI - Roles of NSDI Comparative Analysis - Backgrounds: History

More information

近距離重力実験実験室における逆二乗則の法則の検証. Jiro Murata

近距離重力実験実験室における逆二乗則の法則の検証. Jiro Murata 近距離重力実験実験室における逆二乗則の法則の検証? Jiro Murata Rikkyo University / TRIUMF 第 29 回理論懇シンポジウム 重力が織りなす宇宙の諸階層 2016/12/20-22 東北大学天文学教室 1. 重力実験概観 Newton 実験の紹介 2. 加速器実験の解釈 比較 1 ATLAS よくある質問 Q 重力実験はどのくらいの距離までいってるんですか? A

More information

新学習指導要領で求められる暗黙知の指導に関する事例研究 保健体育科教育法 Ⅰと器械運動 Ⅱにおける指導内容から

新学習指導要領で求められる暗黙知の指導に関する事例研究 保健体育科教育法 Ⅰと器械運動 Ⅱにおける指導内容から 自由研究論文 61 新学習指導要領で求められる暗黙知の指導に関する事例研究 保健体育科教育法 Ⅰと器械運動 Ⅱにおける指導内容から 柴田 1) 俊和 The Case Study about Instruction of the Tacit Knowledge called a New Course of Study - Instruction Contents in Sport Pedagogy-

More information

2006 Inter-laboratory Comparison Study for Reference Material for Nutrients in Seawater

2006 Inter-laboratory Comparison Study for Reference Material for Nutrients in Seawater ISSN 0386-4049 TECHNICAL REPORTS OF THE METEOROLOGICAL RESEARCH INSTITUTE No.58 2006 Inter-laboratory Comparison Study for Reference Material for Nutrients in Seawater 気象研究所技術報告 第 58 号 栄養塩測定用海水組成標準の 2006

More information

Analysis of shale gas production performance by SGPE

Analysis of shale gas production performance by SGPE 447 77 6 24 11 447 453 Journal of the Japanese Association for Petroleum Technology Vol. 77, No. 6 Nov., 2012 pp. 447 453 Lecture Analysis of shale gas production performance by SGPE Kanji Kato **, Mahmood

More information

高分解能原子核乾板を用いた暗黒物質探索 中竜大 名古屋大学基本粒子研究室 (F 研 ) ICEPP 白馬

高分解能原子核乾板を用いた暗黒物質探索 中竜大 名古屋大学基本粒子研究室 (F 研 ) ICEPP 白馬 高分解能原子核乾板を用いた暗黒物質探索 中竜大 名古屋大学基本粒子研究室 (F 研 ) ICEPP シンポジウム @ 白馬 2010.2.14-17 χ Direct Detection χ q q Indirect Detection χ γ, ν, lepton Accelerator Detection q χ χ γ, ν, lepton q χ Target : Xe, Ge, Si, NaI,

More information

69 地盤の水分変化モニタリング技術 比抵抗モニタリングシステムの概要 * 小林剛 Monitoring Technology for a Moisture Change of Subsurface Outline of the Resistivity Monitoring System Tsuyo

69 地盤の水分変化モニタリング技術 比抵抗モニタリングシステムの概要 * 小林剛 Monitoring Technology for a Moisture Change of Subsurface Outline of the Resistivity Monitoring System Tsuyo 69 比抵抗モニタリングシステムの概要 * 小林剛 Monitoring Technology for a Moisture Change of Subsurface Outline of the Resistivity Monitoring System Tsuyoshi KOBAYASHI * Abstract Resistivity monitoring system is a visualization

More information

2018 年 ( 平成 30 年 ) 7 月 13 日 ( 金曜日 ) Fri July 13, 2018

2018 年 ( 平成 30 年 ) 7 月 13 日 ( 金曜日 ) Fri July 13, 2018 2018 年 ( 平成 30 年 ) 13 日 ( 金曜日 ) Fri July 13, 2018 発行所 (Name) : 株式会社東京証券取引所 所在地 (Address) : 103-8220 東京都中央日本橋兜町 2-1 ホームヘ ーシ (URL) : https://www.jpx.co.jp/ 電話 (Phone) : 03-3666-0141 2-1 Nihombashi Kabutocho,

More information

EU 向けに輸出される食品等に関する証明書の発行に係る事務処理要領 ( 国際 ) 通知に基づき 欧州連合 ( 以下 EU という ) へ輸出される食品及び飼料の証明書の発行条件及び手続きを定めるものとする

EU 向けに輸出される食品等に関する証明書の発行に係る事務処理要領 ( 国際 ) 通知に基づき 欧州連合 ( 以下 EU という ) へ輸出される食品及び飼料の証明書の発行条件及び手続きを定めるものとする EU 向けに輸出される食品等に関する証明書の発行に係る事務処理要領 平成 23 年 4 月 7 日山口県農林水産部流通企画室 ( 趣旨 ) 第 1 平成 23 年 3 月 27 日付け22 国際第 1144 号農林水産省大臣官房総括審議官 ( 国際 ) 通知に基づき 欧州連合 ( 以下 EU という ) へ輸出される食品及び飼料の証明書の発行条件及び手続きを定めるものとする ( 対象となる食品等 )

More information

Safer Building and Urban Development ( 安全な建物づくり まちづくりづ ) Contents ( 内容 ) 1)Lessons from building damage by earthquake motions and/or tsunami ( 振動被害または

Safer Building and Urban Development ( 安全な建物づくり まちづくりづ ) Contents ( 内容 ) 1)Lessons from building damage by earthquake motions and/or tsunami ( 振動被害または Safer Building and Urban Development ( 安全な建物づくり まちづくりづ ) Contents ( 内容 ) 1)Lessons from building damage by earthquake motions and/or tsunami ( 振動被害または津波被害からの教訓 ) 2)Way of thinking for reconstruction (

More information

Crustal Deformation Associated with the 2005 West Off Fukuoka Prefecture Earthquake Derived from ENVISAT/InSAR and Fault- slip Modeling

Crustal Deformation Associated with the 2005 West Off Fukuoka Prefecture Earthquake Derived from ENVISAT/InSAR and Fault- slip Modeling Crustal Deformation Associated with the 2005 West Off Fukuoka Prefecture Earthquake Derived from ENVISAT/InSAR and Fault- slip Modeling Taku OZAWA, Sou NISHIMURA, and Hiroshi OHKURA Volcano Research Department,

More information

生命システム解析 構成のための 次世代シミュレーション

生命システム解析 構成のための 次世代シミュレーション 生命システム解析 構成のための 次世代シミュレーション Hiroki R. Ueda Center for Developmental Biology RIKEN @ Kobe, JAPAN Hiroki R. Ueda, Laboratory for Systems Biology, CDB, RIKEN 1 What is LIFE? Hiroki R. Ueda, Laboratory for

More information

Lecture 12: Pipelined Implementations: Control Hazards and Resolutions

Lecture 12: Pipelined Implementations: Control Hazards and Resolutions 18-447 Lectre 12: Pipelined Implementations: Control Hazards and Resoltions S 09 L12-1 James C. Hoe Dept of ECE, CU arch 2, 2009 Annoncements: Spring break net week!! Project 2 de the week after spring

More information

28 th Conference on Severe Local Storms 11 Nov Eigo Tochimoto and Hiroshi Niino (AORI, The Univ. of Tokyo)

28 th Conference on Severe Local Storms 11 Nov Eigo Tochimoto and Hiroshi Niino (AORI, The Univ. of Tokyo) L 28 th Conference on Severe Local Storms 11 Nov. 2016 Eigo Tochimoto and Hiroshi Niino (AORI, The Univ. of Tokyo) Introduction In the warm sector of extratropical cyclones (ECs), there are strong upper-level

More information

結合および相互作用エネルギーの定量的 評価法の開発と新規典型元素化合物の構築

結合および相互作用エネルギーの定量的 評価法の開発と新規典型元素化合物の構築 結合および相互作用エネルギーの定量的 評価法の開発と新規典型元素化合物の構築 ( 課題番号 :17350021) 平成 17 年度 ~ 平成 18 年度科学研究費補助金 ( 基盤研究 (B) ) 研究成果報告書 平成 19 年 5 月 研究代表者山本陽介 広島大学大学院理学研究科教授 目次 1. 課題番号 2. 研究課題 3. 研究組織 4. 研究経費 5. 研究発表 原著論文 総説類 国内学会における特別講演

More information

Development of a High-Resolution Climate Model for Model-Observation Integrating Studies from the Earth s Surface to the Lower Thermosphere

Development of a High-Resolution Climate Model for Model-Observation Integrating Studies from the Earth s Surface to the Lower Thermosphere Chapter 1 Earth Science Development of a High-Resolution Climate Model for Model-Observation Integrating Studies from the Earth s Surface to the Lower Thermosphere Project Representative Shingo Watanabe

More information

Hetty Triastuty, Masato IGUCHI, Takeshi TAMEGURI, Tomoya Yamazaki. Sakurajima Volcano Research Center, DPRI, Kyoto University

Hetty Triastuty, Masato IGUCHI, Takeshi TAMEGURI, Tomoya Yamazaki. Sakurajima Volcano Research Center, DPRI, Kyoto University Hypocenters, Spectral Analysis and Source Mechanism of Volcanic Earthquakes at Kuchinoerabujima: High-frequency, Low-frequency and Monochromatic Events Hetty Triastuty, Masato IGUCHI, Takeshi TAMEGURI,

More information

Fusion neutron production with deuterium neutral beam injection and enhancement of energetic-particle physics study in the Large Helical Device

Fusion neutron production with deuterium neutral beam injection and enhancement of energetic-particle physics study in the Large Helical Device 15 th IAEA Technical Meeting on Energetic Particles in Magnetic Confinement Systems, 5-8 September, PPPL Session 8 : Diagnostic Development : O-14 Fusion neutron production with deuterium neutral beam

More information

モータ用モデル予測電流制御における 予測用モータモデルの磁気特性表現の改善

モータ用モデル予測電流制御における 予測用モータモデルの磁気特性表現の改善 モータ用モデル予測電流制御における * 予測用モータモデルの磁気特性表現の改善 Improved PMSM Model Considering Flux Characteristics for Model Predictive Control 井村彰宏 Akihiro IMURA 高橋友哉 Tomoya TAKAHASHI 藤綱雅己 Masami FUJITSUNA 残間忠直 Tadanao ZANMA

More information

XENON SHORT ARC LAMPS キセノンショートアークランプ

XENON SHORT ARC LAMPS キセノンショートアークランプ 光源事業 / キセノンショートアークランプ XENON SHORT ARC LAMPS キセノンショートアークランプ 当社のキセノンショートアークランプは 自然太陽光に近似し た光波長 分光分布を有する特性を生かし 太陽電池の性能評 価 基礎研究のための弊社製ソーラシミュレータ用標準光源と して採用しているだけでなく 高輝度 点光源 高演色という 特性を生かし 分光器用光源 映写機用光源 プラネタリウム

More information

Product Specification

Product Specification This information may be changed without a previous notice. Specification No. JECXDE-9004E Product Specification Issued Date: 17 / Dec. / 2014 Part Description: Supercapacitor (EDLC) Customer Part No.:

More information

地理学における災害 防災研究の動向 IGC 2004 を通して 赤石直美 *

地理学における災害 防災研究の動向 IGC 2004 を通して 赤石直美 * 京都歴史災害研究第 2 号 (2004) 29 ~ 34 短 報 地理学における災害 防災研究の動向 IGC 2004 を通して 赤石直美 * Ⅰ. はじめに今年 2004 年 10 月 1 日現在 日本ではすでに八つの台風が上陸し 高潮や土砂崩れなど深刻な被害がもたらされた また 新潟 福井で発生した集中豪雨による河川の決壊 洪水 浅間山の噴火 東南海沖における地震などが立て続けに発生し 被災地は未だ復興過程にある

More information

東ソー株式会社 - 明日のしあわせを化学する - TOSOH CORPORATION The Chemistry of Innovation. TOSOH CORPORATION The Chemistry of Innovation

東ソー株式会社 - 明日のしあわせを化学する - TOSOH CORPORATION The Chemistry of Innovation. TOSOH CORPORATION The Chemistry of Innovation 東ソー株式会社 - 明日のしあわせを化学する - TOSOH CORPORATION The Chemistry of Innovation TOSOH CORPORATION The Chemistry of Innovation 目次 - Contents 1) 東ソー株式会社の概要 Outline of Tosoh Corporation. 2) Tosoh Advanced Materials

More information

平成 23 年度 博士学位論文 内容の要旨および 審査結果の要旨 ( 平成 24 年 3 月授与 ) 北九州市立大学大学院国際環境工学研究科

平成 23 年度 博士学位論文 内容の要旨および 審査結果の要旨 ( 平成 24 年 3 月授与 ) 北九州市立大学大学院国際環境工学研究科 平成 23 年度 博士学位論文 内容の要旨および 審査結果の要旨 第 12 号 ( 平成 24 年 3 月授与 ) 北九州市立大学大学院国際環境工学研究科 目 次 学位の種類学位番号氏名頁 博士 ( 工学 ) 甲第 50 号セリャンチンロマン 1 博士 ( 工学 ) 甲第 51 号久保和範 6 博士 ( 工学 ) 甲第 52 号神納貴生 9 博士 ( 工学 ) 甲第 53 号玉田靖明 14 博士 (

More information

NIE を取り入れた教育実践研究 大学 2 年生を対象とした時事教養 Ⅰ の授業実践を通して. Educational Research based on Newspaper In Education (NIE)

NIE を取り入れた教育実践研究 大学 2 年生を対象とした時事教養 Ⅰ の授業実践を通して. Educational Research based on Newspaper In Education (NIE) NIE を取り入れた教育実践研究 大学 2 年生を対象とした時事教養 Ⅰ の授業実践を通して Educational Research based on Newspaper In Education (NIE) Tuition of Liberal Arts for second year students at International Pacific University 次世代教育学部国際教育学科渡邉規矩郎

More information

Youhei Uchida 1, Kasumi Yasukawa 1, Norio Tenma 1, Yusaku Taguchi 1, Jittrakorn Suwanlert 2 and Somkid Buapeng 2

Youhei Uchida 1, Kasumi Yasukawa 1, Norio Tenma 1, Yusaku Taguchi 1, Jittrakorn Suwanlert 2 and Somkid Buapeng 2 Bulletin of the Geological Subsurface Survey of Japan, Thermal vol.60 Regime (9/10), in the p.469-489, Chao-Phraya 2009 Plain, Thailand (Uchida et al.) Subsurface Thermal Regime in the Chao-Phraya Plain,

More information

Chemical Management Manual. Ver. 1

Chemical Management Manual. Ver. 1 Chemical Management Manual Ver. 1 Okinawa Institute of Science and Technology Graduate University Research Safety Section, Division of Research Support March 2013 About the Chemical Management Manual This

More information

井出哲博士の研究業績概要 井出哲博士はこれまで データ解析や数値シミュレーションの手法を用いることによって 地震の震源で起きている現象を様々な角度から研究してきた その主な研究成果は 以下の 3 つに大別される

井出哲博士の研究業績概要 井出哲博士はこれまで データ解析や数値シミュレーションの手法を用いることによって 地震の震源で起きている現象を様々な角度から研究してきた その主な研究成果は 以下の 3 つに大別される 井出哲博士の研究業績概要 井出哲博士はこれまで データ解析や数値シミュレーションの手法を用いることによって 地震の震源で起きている現象を様々な角度から研究してきた その主な研究成果は 以下の 3 つに大別される 1. 地震の動的破壊プロセスの解明地下の岩盤の破壊を伴う摩擦すべりである地震を理解するには 地下で何が起きたかを正確に知る必要がある 井出博士は そのための手法である 断層すべりインバージョン法

More information

HWS150A RELIABILITY DATA 信頼性データ

HWS150A RELIABILITY DATA 信頼性データ RELIABILITY DATA 信頼性データ TDK-Lambda A259-57-1C I N D E X PAGE 1.MTBF 計算値 Calculated Values of MTBF R-1~2 2. 部品ディレーティング Components Derating R-3~7 3. 主要部品温度上昇値 Main Components Temperature Rise T List R-~9.

More information

一般化川渡り問題について. 伊藤大雄 ( 京都大学 ) Joint work with Stefan Langerman (Univ. Libre de Bruxelles) 吉田悠一 ( 京都大学 ) 組合せゲーム パズルミニ研究集会

一般化川渡り問題について. 伊藤大雄 ( 京都大学 ) Joint work with Stefan Langerman (Univ. Libre de Bruxelles) 吉田悠一 ( 京都大学 ) 組合せゲーム パズルミニ研究集会 一般化川渡り問題について 伊藤大雄 ( 京都大学 ) Joint work with Stefan Langerman (Univ. Libre de Bruxelles) 吉田悠一 ( 京都大学 ) 12.3.8 組合せゲーム パズルミニ研究集会 1 3 人の嫉妬深い男とその妹の問題 [Alcuin of York, 青年達を鍛えるための諸問題 より ] 3 人の男がそれぞれ一人ずつ未婚の妹を連れて川にさしかかった

More information

低温物質科学研究センター誌 : LTMセンター誌 (2013), 23: 22-26

低温物質科学研究センター誌 : LTMセンター誌 (2013), 23: 22-26 Title サロンセミナー報告 Author(s) Citation 低温物質科学研究センター誌 : LTMセンター誌 (2013), 23: 22-26 Issue Date 2013-12-01 URL https://doi.org/10.14989/189250 Right Type Departmental Bulletin Paper Textversion publisher Kyoto

More information

L07-L09 recap: Fundamental lesson(s)!

L07-L09 recap: Fundamental lesson(s)! L7-L9 recap: Fundamental lesson(s)! Over the next 3 lectures (using the IPS ISA as context) I ll explain:! How functions are treated and processed in assembly! How system calls are enabled in assembly!

More information

A method for estimating the sea-air CO 2 flux in the Pacific Ocean

A method for estimating the sea-air CO 2 flux in the Pacific Ocean 太平洋における大気 - 海洋間二酸化炭素フラックス推定手法 A method for estimating the sea-air CO 2 flux in the Pacific Ocean 杉本裕之 気象庁地球環境 海洋部 / 気象研究所海洋研究部 平石直孝 気象庁地球環境 海洋部 ( 現 : 気象庁観測部 ) 石井雅男, 緑川貴 気象研究所地球化学研究部 Hiroyuki Sugimoto Global

More information

SML-811x/812x/813x Series

SML-811x/812x/813x Series SML-811x/812x/813x Series Data Sheet 特 背面実装可能タイプ 外観図 サイズ情報 3412 (15) 3.4 1.25mm (t=1.1mm) Color Type V U D W M B WB 外形寸法図 3.4 はんだ付け推奨パターン 1.2 R 1.25 1.25 φ2.4 4-R.3 レジスト +.5 1.1 -.1 Hole + 1.25.28 カソードインデックス

More information

高度バッテリ温度監視 デュアル入力リニアチャージャ Smart Power Selector

高度バッテリ温度監視 デュアル入力リニアチャージャ Smart Power Selector 19-4995; Rev 1; 3/1 EVALUATION KIT AVAILABLE 概要 を備えたデュアル入力 Li+ ( リチウムイオン )/Li-Polyリニアバッテリチャージャの MAX8934_ は JEITA 推奨に従って 単一の Li+/Li-Poly セルを安全に充電します MAX8934_ は 充電時のバッテリ温度 (T BATT ) を監視し バッテリ温度の変化に合わせて急速充電電流と充電終了電圧を自動的に調整します

More information

質量起源 暗黒物質 暗黒エネルギー 宇宙線 陽子崩壊 ニュートリノ質量 米国 P5 ニュートリノ CPV 宇宙背景ニュートリノクォーク レプトンマヨラナ粒子 ニュートリノ測定器 陽子崩壊探索. Diagram courtesy of P5. Origin of Mass.

質量起源 暗黒物質 暗黒エネルギー 宇宙線 陽子崩壊 ニュートリノ質量 米国 P5 ニュートリノ CPV 宇宙背景ニュートリノクォーク レプトンマヨラナ粒子 ニュートリノ測定器 陽子崩壊探索. Diagram courtesy of P5. Origin of Mass. Diagram courtesy of P5 The Energy Frontier Origin of Mass Matter/Antimatter Asymmetry Dark Matter Origin of Universe Unification of Forces New Physics Beyond the Standard Model ニュートリノ質量 質量起源 The Intensity

More information

二国間交流事業共同研究報告書 共同研究代表者所属 部局独立行政法人理化学研究所 創発物性科学研究センター

二国間交流事業共同研究報告書 共同研究代表者所属 部局独立行政法人理化学研究所 創発物性科学研究センター ( 様式 4-1) 二国間交流事業共同研究報告書 平成 26 年 3 月 20 日 独立行政法人日本学術振興会理事長殿 共同研究代表者所属 部局独立行政法人理化学研究所 創発物性科学研究センター 量子情報エレクトロニクス部門 量子凝縮物性研究ク ルーフ ( ふりがな ) ノリフランコ職 氏名ク ルーフ テ ィレクター NORI FRANCO 1. 事業名相手国 ( ロシア ) との共同研究振興会対応機関

More information

Kyoko Kagohara 1, Tomio Inazaki 2, Atsushi Urabe 3 and Yoshinori Miyachi 4 楮原京子

Kyoko Kagohara 1, Tomio Inazaki 2, Atsushi Urabe 3 and Yoshinori Miyachi 4 楮原京子 地質調査総合センター速報 No.54, 平成 21 年度沿岸域の地質 活断層調査研究報告,p.61-67,2010 長岡平野西縁断層帯における浅層反射法地震探査 - 新潟市松野尾地区の地下構造 Subsurface structure of the Western boundary fault zone of Nagaoka Plain, based on high-resolution seismic

More information

TDK Lambda INSTRUCTION MANUAL. TDK Lambda A B 1/40

TDK Lambda INSTRUCTION MANUAL. TDK Lambda A B 1/40 A273 57 01B 1/40 INDEX PAGE 1. MTBF 計算値 Calculated Values of MTBF 3~4 2. 部品ディレーティング Component Derating 5~9 3. 主要部品温度上昇値 Main Components Temperature Rise ΔT List 10~11 4. 電解コンデンサ推定寿命計算値 Electrolytic Capacitor

More information

Y. Okayasu for the Jlab E collaboration Department of Physics. Tohoku University

Y. Okayasu for the Jlab E collaboration Department of Physics. Tohoku University Analysis status of the Λ hyernuclear sectroscoic exeriment @ Jlab Hall C (E01-011) Contents 1: Characteristics of the (e,e K ) reaction 2: Physics goals of Jlab E01-011 3: Thomas Jefferson National Accelerator

More information

Oxford, Vol. 9, pp (2004).. (3) 微小空間を活用する多相系有機合成反応 小林重太 森雄一朗 小林修 化学と工業 59, pp (2006).

Oxford, Vol. 9, pp (2004).. (3) 微小空間を活用する多相系有機合成反応 小林重太 森雄一朗 小林修 化学と工業 59, pp (2006). 森雄一朗博士の研究業績概要 現代科学において環境は最も重要なキーワードの一つであり 化学分野では環境にやさしい化学 すなわちグリーン サステイナブルケミストリー (GSC) が世界的に重要な研究領域として位置づけられている GSCという言葉が生み出されて約 10 年であるが 化学と環境の共存という大きな目標に向けて今後益々の発展が必要な分野である 森雄一朗博士はこれまでGSC 分野を中心に基礎から応用まで幅広く研究活動を行い成果を挙げている

More information

Experimental and FE Analysis of Seismic Soil-Pile-Superstructure Interaction in Sand. Mahmoud N. HUSSIEN*, Tetsuo TOBITA and Susumu IAI

Experimental and FE Analysis of Seismic Soil-Pile-Superstructure Interaction in Sand. Mahmoud N. HUSSIEN*, Tetsuo TOBITA and Susumu IAI 京都大学防災研究所年報第 53 号 B 平成 22 年 6 月 Annuals of Disas. Prev. Res. Inst., Kyoto Univ., No. 53 B, 2 Experimental and FE Analysis of Seismic Soil-Pile-Superstructure Interaction in Sand Mahmoud N. HUSSIEN*, Tetsuo

More information