最新版はこちら。 突っ込みは各日付の BBS エントリのほか、 メール (nakano@st.seikei.ac.jp) や フォーム からどうぞ。 なおスパム除けのため、BBS 機能には 緩い認証を入れて います。 検索エンジンから来た方は、エンジンの方のキャッシュを見るか、 下の簡易検索を試してみてください。
|
Namazu for hns による簡易全文検索 詳しくは 詳細指定/ヘルプを参照して下さい |
||||||||||||||||||||||||||||||||||||||||||||||||
The effect of interfacial interactions on the initial growth of Cu on clean SiO2 and 3-mercaptopropyltrimethoxysilane (MPTMS)-modified SiO2 substrates by sputter deposition was studied using transmission electron microscopy, energy dispersive x-ray spectroscopy, and x-ray photoelectron spectroscopy. Plasma damage during sputter deposition makes surfaces of MPTMS-modified SiO2 substrates consist of small MPTMS islands several tens of nanometers in diameter and bare SiO2 areas. These MPTMS islands are composed of disordered multilayer MPTMS aggregates. The initial growth behavior of Cu on MPTMS-modified SiO2 substrates differs from that on clean SiO2 substrates, although Cu grows in three-dimensional-island mode on both of them. After a 2.5-monolayer Cu deposition on clean SiO2 substrates, spherical Cu particles were formed at a low number density of 1.3×10^16 /m^2 and at a long interparticle distance of 5 nm. In contrast, after the same amount of deposition on MPTMS-modified SiO2 substrates, Cu particles preferentially grow on MPTMS islands at a high number density of 3.9×10^16 /m^2 and at a short interparticle distance of 3 nm, but do not grow on bare SiO2 areas. The increased number density and the decreased interparticle distance indicate that Cu has a lower mobility on MPTMS islands on MPTMS-modified SiO2 substrates than on clean SiO2 substrates. This difference in Cu mobility is attributed to the enhanced interfacial interactions between Cu and S on MPTMS islands on MPTMS-modified SiO2 substrates via the formation of CuS bonds, compared with the relatively weak interfacial interactions between Cu and Si or O on clean SiO2 substrates.
The surrounding sheath focuses the charged particles to distinct parts of the probe surface resulting in nonuniform physical and/or chemical properties. Then, after a time interval dependent of the degree of plasma contamination, this process results in well-defined regions with different work functions that shape the probe characteristic leading to erroneous measurement of plasma temperature and ion density. For Ar/O2 and Ar/SF6 plasmas produced within a multipolar magnetically confined device we investigated bombardment by positive or negative charges and indirect heating to modify the surface of a planar probe.
locate / | wc -lの方がシステムに優しいかも。 あるいは df -i とか。 正確な全数が必要なときはだめだけど。
--- sarg-1.3-PRE1.orig/index.c +++ sarg-1.3-PRE1/index.c @@ -23,6 +23,7 @@ char ftime[128]; char day[4], mon[4], year[6], hour[10]; char h[3], m[3], s[3]; + struct stat statbuf; if(LastLog[0] != '\0') mklastlog(dirname,debug); @@ -59,18 +60,9 @@ obtuser(dirname,direntp->d_name,tuser); obttotal(dirname,direntp->d_name,tbytes,tuser,media); - strcpy(html,data); - getword(mon,html,' '); - getword(mon,html,' '); - getword(day,html,' '); - getword(hour,html,' '); - getword(year,html,' '); - getword(year,html,' '); - strcpy(html,hour); - getword(h,html,':'); - getword(m,html,':'); - strcpy(s,html); - buildymd(day,mon,year,ftime); + sprintf(html, "%s/%s", dirname, direntp->d_name); + stat(html, &statbuf); + sprintf(ftime, "%d", statbuf.st_mtime); sprintf(html,"%s%s%s%s;%s;%s;%s;%s;%s\n",ftime, h, m, s, direntp->d_name, data, tuser, tbytes, media); fputs(html, fp_tmp);しかしこの辺のコード目眩がするな。