sgoco QA presentation_2010_V.2
sgmodel软件包用户手册说明书

Package‘sgmodel’October14,2022Type PackageTitle Solves a Generic Stochastic Growth Model with a RepresentativeAgentVersion0.1.1Author Thomas Vigie<*********************>Maintainer Thomas Vigie<*********************>Description It computes the solutions to a generic stochastic growth model for a given set of user sup-plied parameters.It includesthe solutions to the model,plots of the solution,a summary of the features of the model,a function that covers different types of consump-tion preferences,and a function that computes the moments of a Markov process.Merton,Robert C(1971)<doi:10.1016/0022-0531(71)90038-X>,Tauchen,George(1986)<doi:10.1016/0165-1765(86)90168-0>,Wickham,Hadley(2009,ISBN:978-0-387-98140-6).License GPL-3Encoding UTF-8LazyData trueSuggests knitr,rmarkdown,testthatImports ggplot2,ramify,RtauchenVignetteBuilder knitrRoxygenNote6.0.1NeedsCompilation noRepository CRANDate/Publication2020-02-2712:20:02UTCR topics documented:Markovmoments (2)package_sgmodel (3)plot_sgmod (3)12Markovmoments print.summary_sgmod (4)print_sgmod (5)sgmodel (6)summary_sgmod (8)util (9)Index11 Markovmoments MarkovmomentsDescriptionThe function Markovmoments computes the expectation,variance,autocovariance and autocorrela-tion of a Markov process.UsageMarkovmoments(states,ptm,...)Argumentsstates A numerical vector with the states of the Markov process.ptm The probability transition matrix,a square matrix of dimension length(states) whose columns sum to one....Additional arguments.ValueIt returns a list containing:Expectation The mean of the process.Variance The variance of the process.AutocovarianceThe autocovariance of the process.AutocorrelationThe autocorrelation of the process.Stationary distributionThe stationary distribution of the process,used for the computation of the mo-ments.Examplesa<-c(-1,1)A<-matrix(c(0.5,0.6,0.5,0.4),2,2)Markovmoments(a,A)package_sgmodel3package_sgmodel sgmodel:A package for computating the solutions to a genericstochastic growth model.DescriptionThe sgmodel package provides three important functions:sgmod,util and Markovmoments.The sgmodel functionThe sgmodel function solves a standard stochastic growth model using value function iteration.The stochastic component follows an autoregressive process of order one,and is discretized by afinite state Markov process.The util functionIt computes values for various uility functions encountered in economic theory.The Markovmoments functionIt computes the four moments of afinite state Markov chain:expectation,variance,autocovariance and autocorrelation.plot_sgmod plot_sgmodDescriptionThe function plot_sgmod returns a plot of the Savings value of a sgmodel object on the Capital grid value.Usageplot_sgmod(x,...)Argumentsx A sgmod object....Additional arguments.ValueIt returns a plot using ggplot that graphs the Savings decisions from the sgmodel object on the Capital grid.The plot shows as many facets as length(Z)where Z is the vector of states of the TFP process.4print.summary_sgmodReferencesWickham H(2009),ggplot2:Elegant Graphics for Data Analysis.Examplesmodel<-sgmodel(grid=100,rho=0.2,sigma=0.02)plot_sgmod(model)grid<-200utiltype<-"CRRA"utilparam<-4A<-1depre<-0.03discount<-0.95prod<-0.3states<-5m<-2rho<-0.2sigma<-0.02model<-sgmodel(grid,utiltype,utilparam,A,depre,discount,prod,states,m,rho,sigma) plot_sgmod(model)print.summary_sgmod print.summary_sgmodDescriptionThe function print.summary_sgmod prints a summary for a sgmodel object.Usage##S3method for class summary_sgmodprint(x,...)Argumentsx An object of class sgmod....Additional arguments.ValueIt returns a list with the model parameters.It includes:Utility functionThe type of utility function.See the details of util for the available types Capital share The exponent on capital in the Cobb-Douglas production function.Discount factorThe discount factor used in the model.Depreciation The depreciation rate of capital used in the model.print_sgmod5Rho Autocorrelation of the TFP AR(1)process.Sigma Standard deviation of the white noise in the TFP process.Number of TFP statesNumber of states of the TFP process.Examplesgrid<-200utiltype<-"CRRA"utilparam<-4A<-1depre<-0.03discount<-0.95prod<-0.3states<-3m<-4rho<-0.2sigma<-0.02model<-sgmodel(grid,utiltype,utilparam,A,depre,discount,prod,states,m,rho,sigma) summary_sgmod(model)print_sgmod print_sgmodDescriptionThe function print_sgmod prints results of the sgmodel function.Usageprint_sgmod(x,...)Argumentsx A sgmodel object....Additional arguments.ValueThe function prints the call of the function,the Savings,Consumption and Capital grid vectors from sgmodel.Examplesgrid<-200utiltype<-"CRRA"utilparam<-4A<-1depre<-0.03discount<-0.95prod<-0.3states<-3m<-5rho<-0.2sigma<-0.02model<-sgmodel(grid,utiltype,utilparam,A,depre,discount,prod,states,m,rho,sigma) print_sgmod(model)sgmodel SgmodelDescriptionThe function sgmodel computes the solutions to a generic stochastic growth model after discretizing the distribution of the stochastic element.Usagesgmodel(grid,utiltype,utilparam,A,depre,discount,prod,states,m,rho,sigma,...)Argumentsgrid A numerical value,the number of capital grid points to consider for k(t).Default value set to1000.utiltype The type of preference for the util function.Can be"log","CRRA","CARA", "Cobb-Douglas","CES".See description of util for details.Default type setto"log".utilparam Numerical value,preference parameter for the util function.See description of util for details.Default set to1.A Numerical value,preference parameter for the util function.See descriptionof util for details.Default set to1.depre Numerical value for the depreciation parameter.Must be between0and1.De-fault value set to1.discount Numerical value for the discount factor.Must be(strictly)between0and1.Default value set to0.95.prod Numerical value for the Cobb-Douglas production function.Must be(strictly) between0and1.Default value set to0.3.states umerical value for the number of states of the Markov process approximating the TFP process.Default value set to2.m Numerical value for the Rtauchen function.See description of Rtauchen for details.Default value set to3.rho Autocorrelation of the TFP AR(1)process,used to approximate the process witha Markov process.sigma Standard deviation of the white noise in the TFP process,used to approximate the process with a Markov process....Additional arguments.ValueThe function returns a list containing:Capital grid Vector of values for capital.Savings Vector of size(grid x States)indicating which coordinates of the capital grid are the optimal savings decision.Consumption Vector of size(grid x States)indicating the optimal consumption decisions us-ing the optimal savings decision,and given the capital level of the correspondingcoordinate of Capital grid.Z States of the TFP process.PTM The probability transition matrix of the process.Production parameterThe exponent on capital in the Cobb-Douglas production function.Utility type The type of utility function.See the details of"util"for the available types Discount factorThe discount factor used in the model.Depreciation The depreciation rate of capital used in the model.Rho Autocorrelation of the TFP AR(1)process.Sigma Standard deviation of the white noise in the TFP process.ReferencesTauchen G(1986),Finite state markov-chain approximations to univariate and vector autoregres-sions.Economics letters,20(2),177–181.Merton R.C(1971),Optimum consumption and portfolio rules in a continuous-time model.Journal of Economic Theory,3(4),373–413.URL /science/article/ pii/002205317190038XExamplesmodel<-sgmodel(grid=100,rho=0.2,sigma=0.02)grid<-200utiltype<-"CRRA"8summary_sgmod utilparam<-4A<-1depre<-0.03discount<-0.95prod<-0.3states<-5m<-10rho<-0.2sigma<-0.02model<-sgmodel(grid,utiltype,utilparam,A,depre,discount,prod,states,m,rho,sigma) summary_sgmod summary_sgmodDescriptionThe function summary_sgmod prints a summary for results of the sgmodel function.Usagesummary_sgmod(object,...)Argumentsobject A sgmodel object....Additional arguments.ValueIt returns a list with the model parameters.It includes:Utility functionThe type of utility function.See the details of util for the available types Capital share The exponent on capital in the Cobb-Douglas production function.Discount factorThe discount factor used in the model.Depreciation The depreciation rate of capital used in the model.Rho Autocorrelation of the TFP AR(1)process.Sigma Standard deviation of the white noise in the TFP process.Number of TFP statesNumber of states of the TFP process.util9Examplesgrid<-200utiltype<-"CRRA"utilparam<-4A<-1depre<-0.03discount<-0.95prod<-0.3states<-3m<-3rho<-0.2sigma<-0.02model<-sgmodel(grid,utiltype,utilparam,A,depre,discount,prod,states,m,rho,sigma) summary_sgmod(model)util UtilDescriptionThe function util computes values for different types of utility functions and different parameters.See sgmodel_vignette for detailed functional forms.Usageutil(x,A,prefparam,type=c("log","CRRA","CARA","Cobb-Douglas","CES"), ngoods,...)Argumentsx A numeric vector of length ngoods with values to compute utility for.A A numerical value that will premultiply the utility function.Default value set to1.prefparam A numerical value,the preference parameter applied to the utility function de-pending on type.type A character for the Type of utility function.Can be"log","CRRA","CARA", "Cobb-Douglas","CES".Default type set to"log".ngoods Numerical value for the number of goods to consider.Default value set to1....Additional arguments.ValueA numerical value,the utility function evaluated at the arguments.10utilReferencesMerton R.C(1971),Optimum consumption and portfolio rules in a continuous-time model.Journal of Economic Theory,3(4),373–413.URL /science/article/ pii/002205317190038X.Examplesx<-c(exp(1),exp(1))A<-2type<-"log"ngoods<-2util(x=x,A=A,type=type,ngoods=ngoods)IndexMarkovmoments,2package_sgmodel,3package_sgmodel-package(package_sgmodel),3plot_sgmod,3print.summary_sgmod,4print_sgmod,5sgmodel,6summary_sgmod,8util,911。
高职国际市场营销教学中的presentation教学法应用

文章编号 : I S S N 1 0 0 6 -6 5 6 X( 2 0 1 4 ) 0 2 - 0 1 9 2 - 0 1
P r e s e n t a t i o n在英文 中的意思是 报告 和陈述 ,最早 在 国内被应用 于英语语 言的教学 中 , 具体步骤是先把一个班级 为单位 的学生分 成若 干个小组 ,每个小组 以 6 个人左右 为最佳 ,给 出固定 的准备时 间,提 出话题 , 让小组 同学 自己讨论 、查找资料 、分配任务 、制作 P P T ,然 后 在课堂上 由一位代表上讲台使用 P P T将对话题 的研究 演讲 出来 , 目 的是提高学生的英语 口语表达 能力 。P r e s e n t a t i o n教学法是美国 、英国 等发达 国家课堂教学 中普遍使用 的一种互动式 的教学 手段 。 而在 国内 的教 学 中,大多数都是 仍然采取 传统 的单 向式教 学方 法课堂 上依然是 以教 师的理论 教授 为主 ,教师一 言堂 ,学生提不起兴 趣 ,上课不愿意 听,很重要的一个原 因是他们觉得这一类课程都很浅 显 易懂 ,只要 自己愿意课下 阅读一下就可 以理解 ,因此学生上课容易 走神, 注意力不集 中。再加上理论教学都很枯燥乏味 ,不能使学生融 人到课 堂 ,起 不到好的教学效果 。 通 过对 中西 教学方式 的对 比 ,结合笔者 多年 的企业海外 工作经 历 ,为了培养学 生的分析 、思考 、表达能力 、锻炼综 合素质、增强学 生的就业竞争力 ,决定在高职教学 中采用 p r e s e n t a t i o n 教学法 。
一
(2 )任 务 指 导
、
目标 课程 的选 择和 目标 学生群体 的选择
讲授 完 成任 务 所需 的基 本 理论 、背 景 资料 、实 施 条件 、注 意 事项 和 问题解 决 的评价 标 准 。 (3 )任 务 解 决 由学生组成 的各小组 自 行制定任务实施计划即在 国际市场营销课 程上 老师布置 的各个案 例分析 、知识点解 读等 ,团队 内部进 行分: [ 合作 ,分别 寻找课 内外 资料 、搭 建 P P T结构 、美 化 P P T、在课 堂 上进行 p r e s e n t a t i o n学生 的思 维方式 、逻辑思 考能力 、实际解 决问题 的能力 和进 行个人魅 力 的展 示 。P r e s e n t a t i o n 不仅是 老师布置的任务完成情况 的展示 ,更是培养 学生 的团队合作 能力 和每个个体 的表达 能力 ,这 些是在今 后 的实 际 丁作 中的核 心竞 争力 培养 。 (4 )任 务 评 价 对于 p r e s e n t a t i o n的最后评价 ,由学生和老师共 同完成 ,首先 由 学生进行 互评 ,不 仅要说优 点 ,更要提 出 自己对 p r e s e n t a t i o n的建 议 ,这些建议不仅是给做 p r e s e n t a t i o n 的同学的参考 ,更是对 自己如 何更好完成 p r e s e n t a t i o n的一种鞭策 。在学生进行完互评后 ,老师 再 进一步从课程 内容 、P P T形式 、p r e s e n t a t i o n 的注意事项等各方 面进
01-2013_-_Aawoot_Srikhaow_-_PreparationofCu2OH3NO3ZnOanovelcatalystformethylor[retrieved-2016-11-15]
![01-2013_-_Aawoot_Srikhaow_-_PreparationofCu2OH3NO3ZnOanovelcatalystformethylor[retrieved-2016-11-15]](https://img.taocdn.com/s3/m/da277a3dcfc789eb172dc83a.png)
Applied Catalysis B:Environmental 130–131 (2013) 84–92Contents lists available at SciVerse ScienceDirectApplied Catalysis B:Environmentalj o u r n a l h o m e p a g e :w w w.e l s e v i e r.c o m /l o c a t e /a p c a tbPreparation of Cu 2(OH)3NO 3/ZnO,a novel catalyst for methyl orange oxidation under ambient conditionsAssadawoot Srikhaow a ,b ,Siwaporn Meejoo Smith b ,c ,∗aMaterials Science and Engineering Graduate Program,Faculty of Science,Mahidol University,Rama VI Road,Rajathevi,Bangkok 10400,Thailand bCenter of Excellence for Innovation in Chemistry,Faculty of Science,Mahidol University,Rama VI Road,Rajathevi,Bangkok 10400,Thailand cDepartment of Chemistry,Faculty of Science,Mahidol University,Rama VI Road,Rajathevi,Bangkok 10400,Thailanda r t i c l ei n f oArticle history:Received 4May 2012Received in revised form 1September 2012Accepted 16October 2012Available online 29 October 2012Keywords:Copper hydroxide nitrate Zinc oxideLayered hydroxyl salts Catalytic wet oxidation Wastewater treatmenta b s t r a c tThis work reports a novel process to synthesize copper hydroxyl nitrate/zinc oxide composites (Cu 2(OH)3NO 3/ZnO),and their application as a highly effective and reusable catalyst for wet oxidation of methyl orange (MO)under ambient conditions.No additional air or oxygen flow is ing a metal oxide assisted method,the Cu 2(OH)3NO 3/ZnO composites were hydrothermally obtained by varying the Cu:Zn mole ratio (2:1,4:1,and 6:1)and the structural,chemical and surface properties of the composites were investigated.Decolorization of 500ppm MO can be effectively catalyzed by the Cu 2(OH)3NO 3/ZnO composite (Cu:Zn =4:1)with the color,chemical oxygen demand (COD)and total organic carbon (TOC)removal efficiencies being greater than 99%,98%and 94%,respectively,after 20min treatments using the catalyst loading of 3g L −1.Results from systematic catalytic activity tests strongly suggested that MO was oxidized by oxygen dissolved in the dye solution,and that the degradation pathway of MO possibly occurred through radical and H 2O 2generation.The application of highly efficient Cu 2(OH)3NO 3/ZnO cat-alysts in wastewater remediation may be attractive alternative to existing oxidation catalyst systems as they are low-cost,simple to prepare,feasible to operate under ambient conditions.© 2012 Elsevier B.V. All rights reserved.1.IntroductionWater pollution is one of the main environmental concerns impacting the world ecology.Therefore,water protection plans and wastewater treatments should receive a great attention as they impact the world’s economic growth,global food production and industrial development.It is widely accepted that agricultural runoff and industrial wastewater may contain hazardous chemicals [1,2]and hence discharge of the polluted water without treatment can cause major damage to the quality of natural water reservoirs.Textile industries,in particular,intensively use chemicals (such as dyes and transfer reagents)and massive amounts of water in dyeing processes.Thus,significant amounts of dye contaminated effluent might be produced and effective treatment processes must be put in place to clean the water before releasing into waterways.One of the main research areas in wastewater treatment is developing a novel technology to effectively remove residual dyes and organic pollut-ants from wastewater [3–5].Conventional methods used to remove∗Corresponding author at:Department of Chemistry,Faculty of Science,Mahidol University,Rama VI Road,Rajathevi,Bangkok 10400,Thailand.Tel.:+66222015164;fax:+6623547151.E-mail addresses:siwaporn.smi@mahidol.ac.th ,siwaporn.meejoo@ (S.M.Smith).pollutants from wastewater are adsorption,biological treatment and chemical oxidation [3,6].Although adsorption is the simplest method,but less effective as pollutants were only transferred to the sorbent surface,and additional treatment of the contaminated solid is required [7].Biological treatments are considered as promis-ing alternatives.However,it may be rather difficult to biologically degrade some conjugated aromatic compounds due to their struc-tural stability [8].In addition,microorganisms may not be survived under extreme conditions (extreme pH or highly toxic)inhibiting effective biological treatments of wastewater [9,10].Advanced oxidation processes (AOPs)have been described as chemical methods operated to induce the oxidative degradation of organic compounds by radical species [11,12].Examples of AOPs include ozonation [13],Fenton process [14],photocatalysis [15],sonolysis [16]and other chemical oxidation processes induced by oxidizers such as air,O 2,O 3,and H 2O 2[11,17,18].To practically operate in industrial sites,the oxidation process should remove organic pollutants effectively under mild conditions,and with low cost.Photocatalytic oxidation and sonolysis are of interest as they can operate under ambient conditions with no requirement of additional oxidizer such as ozone and hydrogen peroxide [16,18].However,industrial integration is difficult,as these require special maintenance/operation of high power light sources,or special-ized sonication equipments.In recent years,a limited number of works have reported oxidation of organic compounds via catalytic0926-3373/$–see front matter © 2012 Elsevier B.V. All rights reserved./10.1016/j.apcatb.2012.10.018A.Srikhaow,S.M.Smith/Applied Catalysis B:Environmental130–131 (2013) 84–9285wet oxidation(CWO)at near ambient conditions,in which the organic substances undergo aerial oxidation over metal catalysts such as Fe2O3–CeO2–TiO2/␥-Al2O3[19],MoO3/Ce[20],polyoxo-molybdate nanotubes[21],and ZnO/MoO3mixed oxide nanotubes [22].Although no harmful chemical reagent is required,air or oxy-gen is necessary to activate these oxidation processes.Apart from the intrinsic properties of the catalyst,factors such as catalyst loading,concentration of the organic substrate,airflow rate(and, perhaps,its purity)can play significant roles in the efficiency and rate of the processes[5,12,23].A few copper hydroxyl salts were reported as promising cat-alysts in azo dyes removal via catalytic wet peroxide oxidation (CWPO)in which H2O2is required as oxidizer[24,25].In2010, Zhan and Chen reported the degradation of azo dyes over copper hydroxyphosphate,Cu2(OH)PO4,under near-neutral pH conditions [24],whereas copper hydroxide nitrate,Cu2(OH)3NO3is an effec-tive CWPO catalyst for oxidative degradation of azo dyes in a wide pH range[25].Previously reported,Cu2(OH)3NO3can be synthe-sized by several routes,such as precipitation of Cu(NO3)2in a basic aqueous solution[26],urea hydrolysis of Cu(NO3)2[27],chemical reaction between CuO and aqueous Cu(NO3)2solution[28],cation exchange of Mg(II)for Cu(II)in aqueous Cu(NO3)2solution and evaporation of aqueous Cu(NO3)2solution[29].To gain a significant advantage over the previously reported cop-per hydroxyl salt catalysts,an ideal catalyst should enable organic substrates to be oxidized under ambient conditions,with no requirement of additional continuously supplied oxidizing agent. In this work,Cu2(OH)3NO3(a copper hydroxyl salt)was incor-porated with microcrystalline ZnO by a one-step hydrothermally metal oxide assisted method.This study also reports the application of this material(denoted as Cu2(OH)3NO3/ZnO)as a highly effec-tive and reusable catalyst for wet oxidation of methyl orange(MO) under ambient conditions without addition of oxidizer.Details on systematic investigations of the structural and catalytic activity of this material and possible degradation pathway of MO are dis-cussed.2.Experimental2.1.MaterialsAll chemicals used in this work were commercially supplied as analytical grade reagents,and used without further purification. De-ionized water was used throughout the experiments.Copper nitrate trihydrate and copper sulphate pentahydrate were com-mercially obtained from Univar,while ZnO powdered material was obtain from Merck.Tert-butanol(Merck)and NaOH(Rankem)were employed as hydroxyl radical scavenger reagents.2.2.Preparation method offlower-like ZnOA d-glucose assisted precipitation method[30]was applied to obtainflower-like ZnO materials by using NaOH and Zn(NO3)2 (Qrëc)as starting reagents,a mixture of H2O:acetone:ethyl acetate (3:3:2by volume)as co-solvent,and d-glucose(Univar)as ion sta-bilizer.Obtained white precipitate was subsequently calcined at 400◦C for3h in an air atmosphere,giving aflower-like ZnO sample with S BET=11.7m2/g.2.3.Preparation of the Cu2(OH)3NO3/ZnO samplesA series of suspensions containing theflower-like ZnO(or com-mercial ZnO)powder in Cu(NO3)2aqueous solutions were obtained by varying the Cu:Zn molar ratios(2:1,4:1and6:1).Next,these sus-pensions were sonicated for30min in an ultrasonic bath,followed by a hydrothermal treatment at100◦C in a50mL Teflon-lined stain-less steel autoclave for30min.Subsequently,the reaction mixtures were left to stand at room temperature,allowing the suspensions to cool down.Afterfiltering and washing with de-ionized water, the precipitates were freeze dried,and kept in a dry condition at room temperature.2.4.Sample characterizationStructural properties of as-prepared samples were stud-ied on a Bruker(AXS model D8advance)powder X-ray diffractometer equipped with Cu K␣radiation, =1.5419˚A,2Ârange=5–50◦,step=0.050◦,scan step=1s/step.FT-IR spectra were obtained on a Perkin Elmer(Spectrum GX FT-IR System) fourier-transform infrared spectrometer.The microstructure of catalyst samples was examined on a JEOL(JSM-6400)scan-ning electron microscope.Furthermore,energy dispersive X-ray (EDX)microanalyses were carried out to identify the chemi-cal composition of catalyst samples.The surface properties were studied by using Brunauer–Emmett–Teller method(BET Model Quantachrome/Autosorb-1,Thermo Finnigan/Sorp-tomatic1990). The concentration of elements in the samples was also determined on an X-rayfluorescence spectrometer(Bruker S4EXPLORER) equipped operating in a He working mode(X-ray tube win-dow=75m;excitation=4kW)using a loose powder preparation method and a34mm sample cup.2.5.Catalytic degradation experimentsAll catalytic reactions were carried out using the same catalyst loading;3g L−1of aqueous methyl orange(MO,500ppm)under stirring.The color removal efficiency of MO was monitored as a function of time by measuring absorbance of the dye solution after catalytic treatment at given time intervals.In order to terminate the reaction at specific reaction times,the catalyst was immediatelyfil-tered off using a Buchner funnel equipped with a water aspirator pump.UV–vis absorption spectra of the dyefiltrates were recorded on a Perkin Elmer(Lamda800)UV–vis spectrophotometer.Subse-quently,the concentration of MO in thefiltrates was quantified using the absorbance at464nm(corresponding to unreacted MO) and a curvefitting method using the Beer Lambert law.The color removal efficiency(Á,%)of methyl orange was calculated by using this equation:Á(%)=C0−C tC0×100(1)where C0is the initial concentration of MO and C t is the concentra-tion of MO after‘t’min.Total organic carbon(TOC)content in the dye solutions was determined by an in-house method(SGS laboratory service):LBEN-09149based on United States Environmental Protection Agency, 2004,EPT method9060A.Moreover,chemical oxygen demand (COD)was measured by a standard closed reflux/titration method [31].The TOC removal efficiency is defined as:TOC removal efficiency(%)=TOC0−TOC tTOC0×100(2)where TOC0is initial TOC of the solution and TOC t is TOC of solution after‘t’min reaction time.Similarly,COD0and COD t values were used instead of TOC0and TOC t values in Eq.(2)respectively,to calculate COD removal efficiencies.The data from triplicate mea-surements were analyzed to obtain average values and standard deviation(SD).The significance of difference of data was evaluated using the Student’s T-test and one-way ANOVA[32]at a significance level of0.05.86 A.Srikhaow,S.M.Smith/Applied Catalysis B:Environmental130–131 (2013) 84–92To investigate the possible mechanism of decolorization of MO, the experiments were conducted under air atmosphere,vacuum in a closed system and in the presence of radical scavengers i.e.tert-butanol[33,34]and NaOH[35],into the solution at25◦C.Detailed processes are described in the supplementary data.The stability of catalyst,Cu2(OH)3NO3/ZnO(Cu:Zn=4:1)was studied by monitoring the generation of metal ions in the dye solution during catalytic wet oxidation.After20-min reaction,the concentration of Cu and Zn ions in the dyefiltrates was then deter-mined by using a graphite furnace atomic absorption spectrometer (GFAAS,Perkin Elmer AAnalyst100).A hollow cathode zinc lamp (Perkin Elmer)operated with10-mA current was employed,with argonflow throughout the heating program,except during the atomization step.2.6.Characterization of the degradation productsLiquid chromatography with ion trap mass analyzer(LC–MS, Agilent technology,Agilent1100equipped with Esquire3000plus) was employed to detect the degradation products upon the oxi-dation of methyl orange.The LC–MS system was equipped with C18column and30%of acetonitrile and70%of0.01M ammonium acetate(pH6.8)were used as a mobile phase.Theflow rate used was0.6mL min−1.The mass spectrometer was equipped with an electrospray ionization(ESI)source operating at negative polar-ity.This LC/MS system could detect mass ranged between100and 400m/z.3.Results and discussion3.1.Characterization of the catalystsPowder X-ray diffractrograms of ZnO powder and the syn-thesized Cu2(OH)3NO3/ZnO samples with varying Cu:Zn mole ratios are shown in Fig.1a.The diffraction peak at∼13◦corre-sponds to the basal distance(6.96˚A)typically reported for the Cu2(OH)3NO3layered materials[26,27,29,36].It was observed that the Cu2(OH)3NO3/ZnO derived from the Cu:Zn molar ratio=2:1 contains two crystalline phases,monoclinic Cu2(OH)3NO3(JCPDF card no.74-1749)and hexagonal ZnO(JCPDF card no.36145).How-ever,with the increased Cu:Zn molar ratios to4:1and6:1,the structural characteristics of Cu2(OH)3NO3becomes more evident, whereas the diffraction peaks corresponding to the ZnO phase(at 34.4◦and47.4◦)become weaker in intensity.This is possibly due to a full coverage of Cu2(OH)3NO3layers on the ZnO particles.The sharp and well-defined peaks reflected high degree of crystallinity for all synthesized samples.No diffraction peaks corresponding to neither Zn(OH)2,CuO nor Cu(OH)2phases were observed.It should be pointed out that,to our knowledge,this metal oxide assisted route to synthesize copper hydroxide nitrate has never been reported.The conversion of copper nitrate to copper hydroxyl nitrate possibly resulted from the availability of hydroxyl groups on the ZnO solid base.In a previous study,the basic strength of a ZnO sample was reported as7.2<H<9.3in an Hammett indicator scale, indicating a fairly high strength comparing with those of ZrO2,TiO2, CaO and SrO[37].From Fig.1b,IR measurements also confirm the formation of copper hydroxide nitrate in the system studied.In a good agree-ment with previously reported works[26–29]the IR peaks at876, 785and676cm−1can be assigned to hydrogen bonding frequencies related to Cu O H.The peaks at1048( 1),810( 2),1340,1348and 1429cm−1( 3)can be attributed to the vibration modes of NO3−ions[27].The symmetric and asymmetric stretching modes of NO3−at1429and1340cm−1suggested the presence of NO3−between copper hydroxide layers.The IR band at1048cm−1corresponds to the N O stretching vibration of a monodentrate O NO groups[38],Fig. 1.(a)Powder XRD patterns of Cu2(OH)3NO3/ZnO samples at varying the Cu:Zn molar ratios in comparison to that of ZnO and(b)Infrared spectra of Cu2(OH)3NO3/ZnO(Cu:Zn=4:1)and ZnO powder.whereas the band at1637cm−1can be ascribed to a HOH bending mode.The peaks at3543cm−1and3433cm−1indicated more than one type of hydroxyl groups in the structure[27,29].Note that the characteristic peak of ZnO at430wavenumber[39]was not clearly observed in the Cu2(OH)3NO3/ZnO(Cu:Zn=4:1)sample,possibly due to signal overlapping and the full coverage of Cu2(OH)3NO3 layers formed on the ZnO particles as previously discussed.Noticed from Fig.2a,the microcrystalline ZnO substrate resem-bles to a bunch of doubleflowers.Although the Cu2(OH)3NO3/ZnO composites did not retain theflower-like microstructure of their substrate(Fig.2b–d)a resemblance of aggregates offlake-like plates(∼400nm in thickness)morphology can be still observed. X-rayfluorescence(XRF)was employed to perform elemental anal-ysis in the composite samples,and the results were included in Table1.The XRF results suggest that the content of Cu was found to increase in the composites with increased Cu:Zn molar ratios.This finding was consistent with the results from EDX microanalyses, Fig.3,revealing the presence of Cu and Zn on the composite surface, and that the content of Cu was found to be higher in the compositesA.Srikhaow,S.M.Smith/Applied Catalysis B:Environmental130–131 (2013) 84–9287Fig.2.SEM images of theflower-like ZnO(a)and(b–d)Cu2(OH)3NO3/ZnO at the Cu:Zn molar ratios of2:1,4:1and6:1,respectively.Table1Elemental concentration in the Cu2(OH)3NO3/ZnO samples at various Cu:Zn molar ratios obtained by XRF analysis.Cu:Zn Concentration(wt%)Depth ofpenetration(m) Cu Zn2:147.97±0.04815.09±0.0140.13–0.164:149.86±0.04811.30±0.0120.14–0.176:160.09±0.054 1.59±0.0040.13–0.16 derived from the higher Cu:Zn.However,as shown in Table2,the Cu:Zn ratios vary in different areas of the sample surface,suggest-ing that the Cu-containing compound does not homogeneously incorporated with the ZnO particles.3.2.Catalytic activity of Cu2(OH)3NO3/ZnOThe performance in decolorization of500ppm aqueous methyl orange(MO)solution over the Cu2(OH)3NO3/ZnO composites at varying Cu:Zn ratios were examined over a period of time as shown in Fig.4a.Notably,the color removal efficiencies reached99% within1.5min of the treatments by all composites at25◦C under atmospheric pressure(Fig.4a).It was noticed from Fig.4a and b,that the Cu2(OH)3NO3/ZnO composites prepared with relatively high Cu:Zn molar ratios oxidized MO slightly faster than the sam-ples having lower Cu content,implying that the amount of copper may play a crucial part to the reaction kinetics of MO degradation. Determined usingfirst-order kinetic model,it was found that the higher rate constants for the catalytic wet oxidation of MO were obtained from the Cu2(OH)3NO3/ZnO with the higher Cu:Zn molar ratios(6:1,4.4min−1;4:1,3.9min−1;2:1,3.6min−1).Thefirst order kinetic plot in Fig.4b was focused in the range of shorter reaction time,because after1.5min the color removal efficiencies reached 99%.Statistical analyses suggested that the kinetic constants for the MO decoloriaztion by each catalyst(2:1,4:1and6:1)are signifi-cantly different due to the Cu:Zn molar ratios at the level of p<0.05. Fig.4c shows a characteristic absorption band at464nm corre-sponding to a conjugated azo bond structure in the MO molecule [40].In this work,the absorption band at464nm become weaker in intensity after treatment with Cu2(OH)3NO3/ZnO composites. Therefore,in consistent with the result in Fig.4b,the UV–vis spec-tra of MO after1-min treatments over the composites at varying ratios indicate that the composites with higher Cu:Zn molar ratios lead to the higher color removal rates.Chemical oxygen demand(COD)and total organic carbon(TOC) values are generally determined to examine the water quality. According to the results(Fig.5)COD removal efficiencies over theTable2EDX analysis in different areas of the Cu2(OH)3NO3/ZnO samples at various Cu:Zn molar ratios.Cu:Zn%ElementArea#1Area#2Area#3Cu Zn O Cu Zn O Cu Zn O2:125.7414.8059.4639.85 5.5254.6323.5226.3050.18 4:137.78 5.1057.1145.08 1.9053.0154.09 2.8243.08 6:153.70 3.4042.9048.12 1.4850.4035.73 1.3262.9588 A.Srikhaow,S.M.Smith /Applied Catalysis B:Environmental 130–131 (2013) 84–92Fig.3.EDX analysis of the Cu 2(OH)3NO 3/ZnO samples at various Cu:Zn molar ratios (a)2:1,(b)4:1and (c)6:1,respectively.catalyst are about 88%and 98%after treatment for 5and 20min,respectively.In addition,the results in Fig.5also suggest organic carbon mineralization and CO 2evolution from the oxidation of MO after 5-and 20-min of the treatments by Cu 2(OH)3NO 3/ZnO (Cu:Zn =4:1)resulting in 84%,and 94%TOC removal efficiencies,respectively.Thus,at this catalyst loading condition,the effective decolorization of MO occurred through the fragmentation of the dye into some other colorless compounds,as well as,the mineral-ization of MO.3.3.Possible mechanism and degradation pathwayThe BET surface area of catalysts prepared by the Cu:Zn molar ratios of 2:1,4:1,6:1are 10.81,8.85,and 5.76m 2/g,respectively.From Fig.4a,the Cu 2(OH)3NO 3/ZnO with lower specific surface area gave the higher color removal efficiency,suggesting that the effective color removal was not due to adsorption of dye onto the solid surface.It was found that the higher performance catalysts have lower surface areas,and thus the MO degradation rates are not proportional to the BET surface area of the catalyst.This maybe because copper hydroxyl nitrate deposited on the surface and filled in the pores of the ZnO,resulting in the materials with lower surface areas.It should be also pointed out that the lower surface area materials also have reduced pore volumes,as the pore volumes of catalysts prepared by the Cu:ZnmolarFig.4.(a)Color removal efficiency upon time using Cu 2(OH)3NO 3/ZnO catalysts as a function of Cu:Zn molar ratio and surface area (m 2/g),(b)kinetic of methyl orange oxidation catalyzed by Cu 2(OH)3NO 3/ZnO as a function of Cu dosage and (c)UV–vis absorption spectrum of fresh MO (50ppm)and those of oxidized MO after 1-min treatment by the catalysts with various Cu:Zn molar ratiosunder ambient conditions.Initial concentration of MO =500ppm;catalyst loading =3g L −1.ratios of 2:1,4:1,6:1are 0.08,0.07,and 0.02cc/g,respectively.In addition,approximately the same color removal efficiency (∼99%)was also observed when a dispersion of Cu 2(OH)3NO 3/ZnO (Cu:Zn =4:1)in aqueous MO solution was kept in the dark under similar experimental conditions mentioned above.Thus,light had no influence to the catalytic activity of composite.As a result,one could suggest a catalytic wet oxidation (CWO)process,in which the dye undergoes aerial oxidation over the composites.Note that,commercially supplied ZnO powder can also be replaced the flower-like ZnO to produce the Cu 2(OH)3NO 3/ZnO composites,A.Srikhaow,S.M.Smith/Applied Catalysis B:Environmental130–131 (2013) 84–9289Fig. 5.Color(Á),COD and TOC removal efficiencies upon treatment of MO aqueous solution by the Cu2(OH)3NO3/ZnO(Cu:Zn=4:1).Initial concentration of MO=500ppm;catalyst loading=3g L−1.having almost the same catalytic activity.In an attempt to under-stand the nature of MO degradation over the Cu2(OH)3NO3/ZnO composites,additional MO degradation reactions were conducted in various experimental conditions and reported in Fig.6.It is well known that CWO catalysts require oxygen to degrade organic compounds.Accordingly,if catalytic wet oxidation(CWO) was the major process responsible for MO degradation,the oxi-dation rate of MO should be directly proportional to the oxygen concentration.One of the experiments was conducted under vac-uum(setup Fig.S2)here the MO solution was thoroughly degassed prior to being used.As reported in Fig.6,the color removal effi-ciency of MO under vacuum was about7.72%,which is much lower than under ambient conditions(∼100%).The proposed mechanism of CWO reactions outlined by Ma et al.[44]may be applied to describe the CWO reactions occurring here.RH+Cu2+→R•+Cu++H+(3) Cu++O2→Cu2++O2−(4) 2O2−+2H2O→2OH−+H2O2+O2(5) H2O2+Cu2+→HO•+OH−+Cu2+(6)HO•+MO→degradationproducts(7)parative results of the color removal efficiency after5min treatment of MO with Cu2(OH)3NO3/ZnO(Cu:Zn=4:1),with varying experimentalconditions.Fig.7.Powder XRD patterns of Cu2(OH)3NO3/ZnO samples(Cu:Zn=4:1)before and after reaction comparing with that of MO.From the proposed model,Cu(II)in the catalyst undergoes reduction reaction forming Cu(I)which further reacts with oxygen dissolved in an aqueous solution.Subsequently,H2O2is generated as intermediates through the reaction of O2−and water molecules. Following this model,it is possible that hydroxyl radical is cre-ated when Cu2(OH)3NO3decomposed H2O2intermediates.Finally, MO molecule was attacked by hydroxyl radicals.According to the proposed CWO reaction mechanism,the presence of radical scavenging reagents such as NaOH and tert-butanol,should signif-icantly inhibit the oxidation of MO.The result in Fig.6represents that adding NaOH and tert-butanol gave low color removal effi-ciencies of2.40%and5.95%,respectively after5-min treatments using Cu2(OH)3NO3/ZnO(Cu:Zn=4:1).These results strongly sup-port that the decomposition of MO occurred through a radical pathway.Previously discussed from the result in Fig.4c,the decrease in intensity of the absorption band corresponding to MO indi-cated the cleavage of the azo group,and hence decolorization of the dye solution.No spectral shift corresponding to possible complexation between dye molecules and metal cations[41–43] was observed in our system.Besides this,Fig.7shows that the Cu2(OH)3NO3/ZnO catalyst undergoes no significant structural change after20min reaction.Apart from the typical features cor-responding to the Cu2(OH)3NO3crystalline phase,extra diffraction peaks were observed at8.9◦and17.1◦which correspond to crystal-lized MO on the catalyst surface.The observed slight shift in peak positions is possibly due to microstrains on the sample occurring during the drying process.According to XRD results,there is no evidence of any new crystalline phase in the used catalyst,ruling90 A.Srikhaow,S.M.Smith /Applied Catalysis B:Environmental 130–131 (2013) 84–92Fig.8.Possible MO degradation pathway producing molecular fragments as detected by LC/MS.out the possibility of complexation between the Cu 2(OH)3NO 3/ZnO composite and MO.Consequently,all results discussed above sup-port the degradation of MO over Cu 2(OH)3NO 3/ZnO composites via a catalytic wet oxidation process.Nevertheless,in contrast to conventional CWO catalysts,Cu 2(OH)3NO 3/ZnO is highly active with no requirement of air or oxygen flow or any additional oxidant.In an attempt to determine the nature of MO degradation prod-ucts,LC/MS analysis of decolorized MO solutions revealed the presence of three chemical species after a 5min reaction period.At level of 99%decolorization,the chemical species identified were unreacted MO (M w =304)and two product species with m /z =290and 208,corresponding to MO fragments (Fig.S3).The reaction steps in wet oxidation of MO catalyzed by Cu 2(OH)3NO 3/ZnO observed by LC/MS are given in Fig.8.3.4.Catalyst reusabilityThis part focuses on possibility of recovery,recyclization,and regeneration of the catalyst.By simple centrifugation and decanta-tion,it was found that the Cu 2(OH)3NO 3/ZnO (Cu:Zn =4:1)catalyst can be reused for three consecutive runs,without any further treat-ment,maintaining the color removal efficiencies of 99%,and the COD and TOC removal efficiencies of greater than 90%after 20-min reaction as shown in Fig.9a.As previously discussed,adsorption of MO on the catalyst surface occurred.However,based on the high color removal efficiencies for three cycle utilization,the presence of adsorbed MO on the surface of used catalyst did not affect the color removal efficiencies.Nevertheless,when the catalyst was fur-ther reused without treatment in the 4th run,it was found that the color removal efficiency dropped from 99%to about 37%as reported in Fig.9b.Therefore,the used catalyst after the 3rd run requires suitable regeneration prior to further use.Possible regen-eration methods include refluxing method,calcination under a suitable atmosphere,rinsing by appropriate solvent or some combi-nations of processes [12,19,45,46].Due to the low thermalstabilityFig.9.(a)Color (Á),COD and TOC removal efficiency for suspension of the Cu 2(OH)3NO 3/ZnO (Cu:Zn =4:1)in MO aqueous solution during consecutive runs and (b)comparative results of the color removal efficiencies (Á)of MO by the Cu 2(OH)3NO 3/ZnO (Cu:Zn =4:1)in the 1st and 4th cycles without regeneration,and that of the 4th cycle obtained by employing the regenerated catalyst after the 3rd run via mild acid wash.Initial concentration of MO =500ppm;catalyst loading =3g L −1.of copper hydroxide nitrate and the solubility of metal oxide in acid,the spent Cu 2(OH)3NO 3/ZnO was regenerated by washing with weak acid to remove the unreacted MO and,possibly,degra-dation products adsorbed on the catalyst surface without causing serious damages to the catalyst.It was found that,after filtration,washing the spent catalyst (from the 3rd run)with 5mM HCl(aq)for 20min,and rinsing with water followed by drying at 100◦C,the regenerated catalyst can be employed in the 4th cycle giving the color removal efficiency of 95%as shown in Fig.9b.This color removal efficiency is lower than those obtained from the first three cycles,probably due to some loss of active copper species during acid washing.Table 3reports that,after 20-min MO degradation,the Cu 2(OH)3NO 3/ZnO (Cu:Zn =4:1)catalyst slightly dissolved in the dye solution giving the concentration of Cu and Zn ions of 4.3and 0.5ppm in the first cycle.In the subsequent cycles,the solubil-ity of catalyst was found lower.According to the high color,COD,and TOC removal efficiencies (>90%)for three cycle utilization,this trace amount of meal leaching did not affect the removal efficien-cies,implying that the Cu 2(OH)3NO 3/ZnO catalyst was stable for three consecutive cycles with no requirement of catalyst regen-eration (Fig.9a).However,due to the results of metal leaching,there may be questioning of the MO degradation via homogeneous。
2010PPT模板

评述
列出+评论
题目
题目
题目
评述
内容
列出+评论
...
…
...
…
...
…
...
…
...
…
...
…
列出+结果
...
…
...
…
...
…
...
…
...
…
...
…
列出+结果
设计保证
1
生产装配
2
外协件质量
3
强化质检
4
列出+结果
结果
结果
标题
标题
结果
标题
列出+结果
…
…
…
…
…
…
…
…
…
…
列出+结果
标题
…
细节 细节 细节 细节 细节
60 50 50 100 30
数据
数据变化
数据变化
机会威胁
…
机会
…
威胁
…
机会
…
威胁
…
机会
…
威胁
机会
威胁
…
…
特殊类型的模版–机会/威胁
优势
劣势
北
对比
细节
细节
标题
标题
对比
对比
产品1
D1
标题
D2
标题
D3
标题
D4
标题
D5
标题
产品2
对比
优势 劣势
…
...
...
...
…
...
kk's NTG Product Presentation

Foundry Enterasys Juniper Extreme
NTG产品介绍
NTG主要功能模块
流量监控
长期性流量趋势 折线图
流量分析
短期性流量比较 长条图
实时分析
实时性流量分布 饼状图
网络优化和调整
配置访问控制 配置带宽限制 拔线!!!
流量监控模块功能说明
• 主要功能
- 可通过逻辑运算组合多组 {来源参数+目的参数} - 提供长期流量趋势支持决 策支持分析 - 例:各业务流量报表 - 例:如各单位流量报表
Model 3 Selected Filters
• 数量限制
- 4-8个窗口
FTP from Internet Internet
实时分析模块功能说明
• 主要功能
- 配置AS、区块、应用或链 路的来源和目标,过滤掉不 感兴趣的流量 - 实时流量分布 - 异常流量检测 - 例:Top100 IP流量 Top100 IP
Top-N by Pair 基本分析(Basic) 基本分析(Basic)
Top-N by App.
• 生成文檔
- 指定路由器、排序量 - 生成分布报表 - 生成饼状图和数据表格
针对在系统memory cache中所 针对在系统memory cache中所 有Flow资料进行排序分析 Flow资料进行排序分析
Top-N Reports
All except Area C
History Records
Model 2 Among Areas
• 生成文檔
- 长条图和数据表格 - 可自动排程 - 可生成CSV文档,便于汇整 计算
Model 1 Specific Area
感知CCBN2010的展会语言

一
P n s F om Ol t r
E t di r o
年一 度 的 C B 以 三 网融 合 与下 一代 广 播 网 ( GB)为主 题 ,应 声拉 开帷幕 。 熙熙攘 C N N
攘 的人群 三天 不减 。也许 .在 6 00平 米上 的 66个展 台上一 时不 易找 到感觉 .既 难辩 解新技 术 亮点 90 1
富的镜 头语 言 、更 为广 阔 的感知 空 间 ”的新 模式— — 新 一代 电视 。 无论 是 S Y 展示 的 立体 摄像 , ON 还是 展馆 内 随处可 见的高 清产 品都在 说 明 :人 们对 电视 的感知 正在 发生根 本变 化 .或 许 ,新 的优 势正
在破 茧 而出 。
其次 .人 们对 电视 业务 的感 知从 物 理形 态转 入逻 辑形 态 。无论 是 “ 网融合 ,还是 N 三 GB.都
建立 于物理 形态 的逻辑 演绎 .以物理 网络基 础构 建基 于逻辑 的业 务融 合 。这 正是 Ci o 入研 究未来 s 深 c
网络 和 视听 业务 展 示 了 电视业 务深 层 变革 所发 生 的逻 辑结 构再 造 。而 Har 则在 收购 专 注广 电 的 ri s L i h以后 .出让 了 自己的电信 接入 网测 试工具 部 门 .以其优质 资源 的整 合 ,道 出广 电与 电信 接入 网 et c 的双双 工程 技术诀 窍 ,回答 了基于 物理 网络 节点 的融合 细 节 ,又 进一步 在逻 辑层 面展开 深入 描述 。可 见 .物 理 网络的 开放不 是 目的 .只 有逻 辑层 的业务 开放 才是最 终 目标 。 最 后 .人 们对 视 频感 知 的体 验 由纵 向 ( 白一 彩 色一 数字一 高清一 立 体 )需 求模 式 发展 成 为纵 黑
Cesim-Corporate-Presentation-2012
Cesim Simulations Company PresentationOur VisionWe are changingthe way peoplelearn practicalbusiness skills. Cesim Sales TeamCompany Milestones19962011Cesim is founded & irst custom simulation is developedCesim opens subsidiary in ItalyCesim launches world’s irst fully browser-based simulation in the USCesim launches irst customized online simulation for a global corporate programCesim makes its lagship product available in Chinese, Portuguese, Spanish, French and RussianMore than 100,000users on the Cesim platform19992002200520082010All Cesim simulations become iPad compatibleCesim WorldwideCesim Direct SalesForce Area CoverageCesim Partner NetworkArea CoverageOur solution enables your employees to understand what drives the profitability of the firm and helps develop a shared mindset of the elements contributing to the firm’scompetitive advantage.Your company will achieve results more effectively by aligning your employees with the strategic objectives of the business.What We Offer What Participants Will Have How Company Benefits✓State-of-the-art Customized Simulations✓Industry-specific Simulations ✓Multiple Delivery Methods ✓Train-the-trainer Program ✓Customer Support ✓Holistic Business Mindset✓Fact-based Decision-Making Attitude✓Thorough Understanding of WhatDrives Profitability✓Improved Cross-functionalTeamwork Capability✓Collaborative and Fun LearningExperience✓Better Strategic Alignment WithinThe Organization✓More Effective Use of Capital✓More Effective Use of HumanResourcesThe Cesim Platform✓ Browser-based & Compatible(is completely web based so there is no need for software installation)✓ Scalable & Flexible(allows any number of participants & makes distribution of learning materials easy)✓ Realistic(the simulations reflects real world business challenges and results)✓ Online(has integrated tools that allow participants to play in multiple formats)✓ Multilanguage(supports playing the simulations in any language)✓ Modular(makes the repurposing of the simulations for different target groups easy)✓ Measurable(enables detailed results analysis and participant activity monitoring)Client: Vodafone ItalyVodefone Italy is a leading operator in Italy with 8000 employees and 30 million customers Industry: TelecommunicationsProject Goal: To develop business-acumen, cost-consciousness, and financial literacy amongst employeesImplementation: Cesim delivered a customized telecom operator simulation in Italian and English and conducted workshops for approximately 2000 employeesClient: NH HotelsNH Hotels is one of the main hotel chains in Europe and it operates 400 hotels across Europe, America, and AfricaIndustry: HospitalityProject Goal: To develop a shared mindset among hotel managers and improve their ability to translate group-wide strategy into action Implementation: Cesim delivered a customized hospitality simulation in English, Spanish, French and Italian. It also conducted train-the-trainer workshops for the client’s internal trainers, who then delivered the training for a total of 400 managers globallyClient: Intesa SanPaoloIntesa SanPaolo is the leading bank in Italy and among the top banking groups in Europe with approximately 7000 branches in its network Industry: BankingProject Goal: To help cultivate fact-based management culture, develop analytical skills, and create awareness about the current banking operating environmentImplementation: Cesim designed a customized banking simulation that will be used for about 300 bank managers during the first half of 2013Presented in Full High Definition Cesim Oy | Arkadiankatu 21A | 00100, Helsinki | Finland | tel: +358 405 045 116 | | Confidential | ©2012 Cesim Oy. | All rights reserved Thank You! More information from Veijo Kyosti, Managing Director of Cesim veijo.kyosti@ +358 405 045 11611。
2010软件课件
功能概述
人力资源和社会保障统计信息管理平台
单 位 管 理本
报 表 管 理
数 据 录 入
综 合 文本 总 汇
综 合 查 询
统 分 文本 析 计
数 据 交 换
系 管 文本 理 统
应 用 工 具
统计调查信息综合管理平台
--HRSMIS 2010演示文稿 --HRSMIS –V8.0 2010演示文稿
单位管理
统计调查信息综合管理平台
--HRSMIS 2010演示文稿 --HRSMIS –V8.0 2010演示文稿
产品简介
平台环境: 运行要求 运行要求) 平台环境:(运行要求 操作系统要求: Window XP/2000/2003 系统内存要求: 128兆以上
统计调查信息综合管理平台
--HRSMIS 2010演示文稿 --HRSMIS –V8.0 2010演示文稿
数据录入 数据交换
成 上 报 文 件 接收下级数据 生
数据交换 报文
接收下级数据 的
数据汇总
人力资源社会保障统计信息综合平台
--HRSMIS CLIENT2009演示文稿 --HRSMIS CLIENT-V8.0 2009演示文稿
注意事项
A
数据录入
C
数据交换
注意选择报表具体的年度、期别。 注意选择报表具体的年度、期别。
主要功能有操作员管理、 主要功能有操作员管理、 修改密码、 修改密码、为用户提供 统计业务之外的单位管 内部机构设置、 理、内部机构设置、数 据的存储、 据的存储、报表填制等 相关业务辅助功能
为用户提供了 数据备份, 数据备份,打 印封面, 印封面,计算 器,记事本等 日常辅助功能, 日常辅助功能, 为用户的统计 工作提供全方 位的服务
[课件]会议presentation PPT
' k
is
Probility
true
Probility
flase
Fig. 5. the distributing of Z k ' when true choosing and error choosing, P / N 0 equals to 40dB
pncodeacquisitionmethodenhancedsensitivityperformanceabstractnoncoherentintegration非相干积分canenhanceacquisitionsensitivityspreadspectrumcommunicationsystemhighbitratelowsnrenvironmentduelargelossnovelmethodpncodeacquisitionsincecoherentintegrationtimedatasignnoncoherentintegrationcoherentintegrationresultsbeforenoncoherentintegrationmethodcangetachievablesensitivitygainie
Chosen combination : not always the results supposed to be
Performance performance
:
weak
energy
of
signal
and
deteriorated
99
2 Methods
• M is set to be 2 for simplicity. The error probability can be
GX GSM手册(版本01-02 2023)说明书
ENGLISHGX GSM manualrev 01 - 02/2023This manual is also available in HTML5.Table of Contents1. Introduction (1)1.1. General description (1)2. Features (2)2.1. Built-in GPS receiver (2)2.2. GX compatibility (2)2.3. SIM card (2)2.4. When to use a mobile router instead (2)2.5. Antennas and accessories (2)2.6. What's in the box? (2)3. Installation and configuration (3)3.1. Installation step-by-step (3)3.2. Configuration (4)4. Operation (6)4.1. SIM status (6)4.2. Status Bar (6)4.3. GPS (6)5. Troubleshooting (7)5.1. Troubleshooting guide (7)5.2. What to do if the GX GSM is not staying connected? (7)6. Technical data (8)6.1. Technical data (8)7. Appendix (9)7.1. Accessory / Antennas (9)7.1.1. Outdoor 2G and 3G GSM Antenna (9)7.1.2. Active GPS Antenna (9)7.2. Notes regarding regional coverage (10)7.3. Dimensions (10)8. Warranty (11)8.1. Five year limited warranty (11)1.1. General descriptionThe product described in this guide is replaced by the newer GX LTE 4G modem.The GX GSM only works with 2G and 3G networks, which are slowly being phased out in different countries.Therefore, depending on the installation location, the GX LTE 4G can be a more future-proof solution.The GX GSM is a modem and GPS accessory for our GX range of monitoring products. The GX GSM is a cellular modem;providing a mobile internet for the system and connection to the VRM Portal . It works on 2G and 3G networks.There are multiple models, refer to the table below to see which model best matches the available cellular network bands in your region.* In case of uncertainty please double-check:GSM World Coverage Map2.1. Built-in GPS receiverThe GX GSM includes a built-in GPS receiver. When the optional active GPS antenna is installed, the system can be tracked as well as geo-fenced on the VRM Portal.The required accessory part number is GSM900200100 - Active GPS Antenna for GX GSM.2.2. GX compatibilityThe GX GSM can be used with any of the GX devices and requires Venus OS v2.22 or newer to be installed on the GX device.2.3. SIM cardIt requires a SIM card of the Mini-SIM format and connects to the GX device with an included 1m USB cable.2.4. When to use a mobile router insteadThe GX GSM provides an internet connection for the GX device only. There is no option to share the internetto laptops, phones, or other devices.For installations where more devices need internet, such as a yacht or RV, consider installing a mobile router instead.2.5. Antennas and accessoriesA small indoor GSM antenna is included. Optionally, we also sell an outdoor outdoor 2G and 3G GSM antenna, which increases the range:•Part number GSM900100100 - Outdoor 4G GSM Antenna2.6. What's in the box?•GX GSM (with integrated USB cable)•GSM mini rod antenna (for indoor use)•DC power cable (with inline fuse and terminal block)3.1. Installation step-by-stepFollow the steps below to install the GX GSM:1.Mount the device in a place that is not covered by metal objects. Consider using the optional outdoor antenna when installingthe GX GSM in a closed metal enclosure, car, or van to increase the range.2.Mount the supplied antenna to the SMA connector marked GSM or connect an optional external outdoor antenna if required.3.An optional active GPS antenna is screwed onto the SMA connector labeled GPS.4.Insert the SIM card. You will need to eject the SIM card tray with a pen or other pointy object. Be aware that the SIM card traysits slightly recessed inside the unit. Be sure to push it all the way in.5.Connect the GX GSM to the GX device with the supplied USB cable. Use a USB hub if all USB sockets are already in use.6.Connect the DC power supply (8 to 70 VDC). A 1.4 m cable with M10 cable lugs and a built-in Slow Blow fuse 3.15A 250V,5x20mm is included. Pay attention to the correct polarity as labeled on the front sticker.7.After power-up, the blue LED will be solid blue. Once it has registered on a network, the LED will start blinking slowly. Finally,when the internet connection is established, the LED will blink quickly.3.2. ConfigurationThe GX GSM is configured entirely via the connected GX device.Setting a SIM-PIN helps reducing the risk of the SIM card being stolen and used. Use a mobile phone to set the SIM-PIN, and thereafter configure it on the GX device as follows:1.When using a SIM card with its SIM-PIN security disabled, the system will work without further configuration.2.Setting a SIM-PIN helps reducing the risk of the SIM card being stolen and used. Use a mobile phone to set the SIM-PIN, andthere after configure it on the GX device as follows:Go to Settings → GSM modem → PIN.3.Enter the same PIN that was previously set in the mobile phone or provided by the network operator.4.Go to Settings → GSM Modem → APN and set the APN name if necessary. Some mobile networks require manualconfiguration of an APN especially when roaming. Contact your network operator for details.5.If you are installing the GX GSM in an area where you can expect internet coverage to be occasionally disrupted, you shouldenable the “Reboot device when no contact” option in the GX device's VRM menu. This will automatically restart the GX device and power cycle the GX if it has failed to transmit data to VRM for the configured time.Note that if you are leaving internet service coverage areas (such as an RV on the move, or a boat leavingdock to go to sea), then it is recommend to disable this setting, so that your GX is not rebooting itselffor no reason. Or set it, for example, to a two hour time-out and accept a reboot every two hours whenunderway.Watch this video to learn how to connect via LAN, WiFi and the GX GSM: Connecting a Victron GX Device online and setting up a GX GSM4.1. SIM statusThe SIM status is displayed on the GSM overview page on the GX device. The following table shows all possible states and their meaning:4.2. Status BarGSM modem status can be checked at a glance by looking at the status bar.4.3. GPSWhen the optional active GPS antenna is added, the position is sent to the VRM portal and also displayed in the GX device as follows:5.1. Troubleshooting guideThere are many reasons for a modem internet connection to not work. Carefully go through each step of this troubleshooting guide. Make sure to start at the first step. When asking for help, make sure to mention each step taken and the result.Note that Ethernet and WiFi connections have priority over the cellular connection. Even when the availableEthernet or WiFi connection does not have a good connection to the internet, there is no automatic detectionin place which in such case switches over to the GX GSM. In more technical language: when the cellular dataconnection is active, it is configured with a high routing metric. This way, the Linux kernel prioritises Ethernetor Wifi when these are available.5.2. What to do if the GX GSM is not staying connected?Enable the “Reboot device when no contact” configuration setting in the VRM menu of the GX device. That will reboot the GX (and with it the GX GSM) automatically if the internet connection is not available. See also the configuration chapter [4] for more details.6.1. Technical data7.1. Accessory / Antennas7.1.1. Outdoor 2G and 3G GSM AntennaThis antenna can be used with the GX GSM for 2G and 3G bands.7.1.2. Active GPS Antenna7.2. Notes regarding regional coverageA good reference to check frequencies is 4G world Coverage Map. Note that the page also contains 2G and 3G information, which is on its GSM World Coverage link on the top.USA, Mexico, Canada and most of South America: 1900 MHz is the most common frequency for 3G, which is unsupported for this version of GX GSM. Use the GX LTE 4G instead.Australia: The 900 MHz 3G frequency in remote areas is typically provided by Optus. Telstra's rural 3G network operates at 850 MHz, which is not supported with the current version of GX GSM. Both Telstra and Optus operate 2100 Mhz networks in urban areas, and are supported.7.3. Dimensions106819615.2515.25 123.53 192242.5Dimensions in mmGSM100100100GX GSMDimension Drawing - GX GSM8.1. Five year limited warrantyThis limited warranty covers defects in materials and workmanship in this product and lasts for five years from the date of original purchase of this product.The customer must return the product together with the receipt of purchase to the point of purchase.This limited warranty does not cover damage, deterioration or malfunction resulting from alteration, modification, improper or unreasonable use or misuse, neglect, exposure to excess moisture, fire, improper packing, lightning, power surges, or other acts of nature.This limited warranty does not cover damage, deterioration or malfunction resulting from repairs attempted by anyone unauthorized by Victron Energy to make such repairs.Victron Energy is not liable for any consequential damages arising from the use of this product.The maximum liability of Victron Energy under this limited warranty shall not exceed the actual purchase price of the product.。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
SGOCO (Fujian) Technology Co., Ltd.
10
Supplier Quality Management
Flow chart
New Supplier Survey and Certification NG Supplier Improvement OK Supplier Selection Disqualify the Supplier OK NG Component Approval Make Direction to Supplier OK
QA Presentation
品 客 全 追 质 户 员 求 第 至 参 卓 一 上 与 越
SGOCO (Fujian) Technology Co., Ltd.
2
Quality Assurance System
Quality Policy 品质方针 Design Quality Assurance 设计品质管理 Supplier Quality Assurance 供应商品质管理 In Process Quality Assurance 制程品质管理 Outgoing Quality Assurance 出货品质管理 Engineering Change Notice 工程变更 Customer Satisfaction Flow Chart 客户满意流程 Closed Loop Corrective Action Flow Chart CLCA流程 流程 Internal Audit Flow Chart 内部稽核流程 New Product Development Flow 新产品开发流程 Equipment & Laboratory 设备及试验室
OQA Inspect & QRE PVT Test Design & Manufacturing Improvement NG
OQA/QRE
PVT Evaluation Meeting OK MP Start
QRE/ QRE Manager MFG
Design & Manufacturing Improvement Reject Outgoing Inspection Accept ORT Test Shipment 8
Got ISO9001:2008 certification
SGOCO (Fujian) Technology Co., Ltd.
5
ISO14001 Policy
Implementing prevention pollution; abide by laws and regulations; To reduce pollution emission; build green environment.
SGOCO (Fujian) Technology Co., Ltd.
3
Quality Assurance System
Quality Policy Design Quality Assurance Supplier Quality Assurance In Process Quality Assurance Outgoing Quality Assurance Engineering Change Notice Customer Satisfaction Flow Chart Closed Loop Corrective Action Flow Chart Internal Audit Flow Chart New Product Development Flow Equipment & Laboratory
QRE DVT Test
QRE /RD-ATE/IE/ SMT engineer
8
New Model Design Verification Procedure (2/2) (2
Flow chart
Design & Manufacturing Improvement NG PVT Evaluation Meeting OK PVT Pilot Run
SGOCO (Fujian) Technology Co., Ltd.
13
In-Process Quality Assurance InPaste Solder Chip & IC Mounting Smear Glue Re-flow
SQA Follow Up
Material Purchasing
MP
Incoming Inspection Improvement Action OK NG Feedback to Supplier NG Production OK Field Component Defects Feedback NG Outgoing Inspection OK Shipment Warehouse
RD
RD
Analyze the feasibility of the Project to check whether admit the DVT
OK DVT Pilot Run
RD
DVT Phase System Integration Test The quantity is about 30 sets
SQA
11
Material Quality Assurance Flow Chart
Flow chart
Component Approved
Owner RD/ENG
Remark <Component SPEC> <Component approving procedure>
Stop Purchase NG OK
SGOCO (Fujian) Technology Co., Ltd.
7
New Model Design Verification Procedure (1/2) (1
Flow chart
New Model Project Start RD
Owner RD
Remark EVT Phase Engineering Verification Test
Owner RD/ENG
Remark <supplier Survey information system> According to the< Supplier Survey and management procedure>
RD/ENG/SQA
RD/ENG
According to the< Component Approving Procedure > To control and insure the materials’ quality. According to the <Incoming inspection> and <nonconformity management> To control and insure the materials’ quality To correct and prevent the materials’ quality 10
SQA
To control the quality of incoming material strictly.
Incoming Sampling Plan: MIL-STD-105E II
Warehouse
AQL: Electronic Part: Mechanical Part Plastic Parts Panel
Major 0.4 0. 65 0.65 0.4
Minor 1 2.5 2.5 1
Component Defect Analysis
MFG
OQA
Warehouse
11
12
Quality Assurance System
Quality Policy Design Quality Assurance Supplier Quality Assurance In Process Quality Assurance Outgoing Quality Assurance Engineering Change Notice Customer Satisfaction Flow Chart Closed Loop Corrective Action Flow Chart Internal Audit Flow Chart New Product Development Flow Equipment & Laboratory
Sample according to< MIL-STD-105E II/ GB/T2828.1.2003
9
Quality Assurance System
Quality Policy Design Quality Assurance Supplier Quality Assurance In Process Quality Assurance Outgoing Quality Assurance Engineering Change Notice Customer Satisfaction Flow Chart Closed Loop Corrective Action Flow Chart Internal Audit Flow Chart New Product Development Flow Equipment & Laboratory
EVT Pilot Run
RD
Check whether meet the SPEC The quantity is about 2 sets
RD: Engineer Verification QE: EVT Test & Review
RD QE
TO meet the SPEC