0

using a cartesian product to generate a calendar

A New Technique Using Headspace Gas Monitoring to Determine Carbon Source Addition in a BNR Process

A New Technique Using Headspace Gas Monitoring to Determine Carbon Source Addition in a BNR Process

Môi trường

... the basis of tests using the same batch of sludge sample Acetate and VFAs concentrations were verified using a Hewlett-Packard® 588 0A gas chromatograph, equipped with a flame ionization detector ... profile of TAD supernatant and NaAc addition Observed CO2 evolution rates were similar in both cases, and the TAD supernatant VFA estimations are shown in Table Estimations showed a substantial overestimation, ... Reading (V) Figure Carbon dioxide sensor calibration with air samples TAD operation A pilot-scale, single-stage TAD (75L) equipped with a Turborator® aerator (Turborator® Technologies Inc.) was...
  • 6
  • 405
  • 0
Optimal design of PEM fuel cells to generate maximum power: A CFD study

Optimal design of PEM fuel cells to generate maximum power: A CFD study

Môi trường

... The material parameters, cell design, and cell operating conditions that give optimal performance depend on the application area Stationary, portable, and transportation applications all have ... the base case operating conditions are taken from reference [2] and are listed in Table Table Geometrical and operational parameters for base case conditions Parameter Channel length Channel ... fuel cells to generate maximum power The analysis helped identifying critical parameters and shed insight into the physical mechanisms leading to a fuel cell performance under various operating conditions...
  • 10
  • 427
  • 0
A Fun Way to Generate Ideas for Comparison Paragraphs.doc

A Fun Way to Generate Ideas for Comparison Paragraphs.doc

Tư liệu khác

... students to this activity in pairs or small groups, in order to generate as many points and supporting sentences as possible Conclusion Usually, these paragraphs are so good that you may want to copy ... hospitals, etc Fold the pieces of paper and put them into a hat Go to each group, and ask one member to take two pieces These are the nouns that must be compared To help students form their topic ... the board: " and are similar in many ways." Tell the students to simply fill in the blanks with the two nouns they randomly selected Depending on the size of the class, I usually ask students...
  • 2
  • 344
  • 0
Using a DataGrid Control to Access a Database

Using a DataGrid Control to Access a Database

Kỹ thuật lập trình

... Preview dialog box Next, you need to create a DataSet object You use a DataSet object to a store local copy of the information stored in the database A DataSet object can represent database structures ... Northwind database; you might need to get the password from your database administrator) Drill down to the Customers table in the Northwind database and drag it to your form This creates a SqlConnection ... Next, add another button that will allow you to save any changes you make to the rows in the DataGrid: Go ahead and add another button and set the Text property of this button to Update Double-click...
  • 8
  • 486
  • 0
Using a SqlConnection Object to Connect to a SQL Server Database phần 1

Using a SqlConnection Object to Connect to a SQL Server Database phần 1

Kỹ thuật lập trình

... ADO.NET automatically stores database connections in a pool Connection pooling offers a great performance improvement because you don't have to wait for a brand new connection to the database to be ... Server database */ using System; using System.Data; using System.Data.SqlClient; class MySqlConnection { public static void Main() { // formulate a string containing the details of the // database ... SQL Server and use those credentials to connect to the database This saves you from providing a separate username and password to SQL Server You can use integrated security in your program by specifying...
  • 7
  • 729
  • 0
Tài liệu Using a SqlConnection Object to Connect to a SQL Server Database phần 2 doc

Tài liệu Using a SqlConnection Object to Connect to a SQL Server Database phần 2 doc

Kỹ thuật lập trình

... SqlConnection("server=localhost;database=Northwind;uid=sa;pwd=sa"); // monitor the StateChange event using the StateChangeHandler() method mySqlConnection.StateChange += new StateChangeEventHandler(StateChangeHandler); ... example defines a method named StateChangeHandler to handle the StateChange event You'll notice that the second parameter to this method is a StateChangeEventArgs object You get the original ... illustrates the use of the StateChange event Listing 7.3: STATECHANGE.CS /* StateChange.cs illustrates how to use the StateChange event */ using System; using System.Data; using System.Data.SqlClient;...
  • 7
  • 592
  • 0
Tài liệu Using a DataView to Control Edits, Deletions, or Additions in Windows Forms pdf

Tài liệu Using a DataView to Control Edits, Deletions, or Additions in Windows Forms pdf

Quản trị mạng

... adding, editing, or deleting the data in the control Binding a DataGrid to a DataTable binds to the default view of the underlying DataTable The DataView class represents a view of the DataTable ... SqlDataAdapter da = new SqlDataAdapter("SELECT * FROM Orders", ConfigurationSettings.AppSettings["Sql_ConnectString"]); DataTable dtOrders = new DataTable("Orders"); da.FillSchema(dtOrders, SchemaType.Source); ... using System.Data; using System.Data.SqlClient; private DataView dv; // private void ControlDataEditWithDataViewForm_Load(object sender, System.EventArgs e) { // Fill the Order table SqlDataAdapter...
  • 3
  • 532
  • 0
Design, fabrication, and characterization of a solenoidsystem to generate magnetic field for an ECR proton source

Design, fabrication, and characterization of a solenoidsystem to generate magnetic field for an ECR proton source

Hóa học - Dầu khí

... analysis of Langmuir probe characterization for ECR plasma Indian J Phys 80: 1011–1015 Jain S K, Jain A, Hannurkar P R, Kotaiah S 2007 Characterization of plasma parameter, first beam results, and ... solutions and precision measurements Nucl Instr Meth Phys Res A2 98: 13–21 Bhawalkar D D, Bhujle A G, Fatnani P, Hannurkar P R, Joshi S C, Karmarkar M G, Kotaiah S, Mhaskar S P, Pande S A, Prabhu S ... development at CEA/Saclay Rev Sci Instrum 75(5): 1414–1416 http://laacg1.lanl.gov Poisson code, Reference manual, LA-UR-87-126, LANL 1987 Jain S K, Jain A, Sharma D, Hannurkar P R 2006 Acquisition and analysis...
  • 8
  • 650
  • 0
Tài liệu Using a Single Stored Procedure to Update Multiple Changes to a SQL Server Database pdf

Tài liệu Using a Single Stored Procedure to Update Multiple Changes to a SQL Server Database pdf

Kỹ thuật lập trình

... schema and data for the table da.FillSchema(ds, SchemaType.Source, TABLENAME); da.Fill(ds, TABLENAME); // Columns in XML representation of data as attributes foreach(DataColumn col in ds.Tables[TABLENAME].Columns) ... System.EventArgs e) { ds = new DataSet( ); // Create the DataAdapter SqlDataAdapter da = new SqlDataAdapter("SELECT * FROM " + TABLENAME, ConfigurationSettings.AppSettings["Sql_ConnectString"]); // Load ... The default value is null which results in the return of a handle to an internal representation to an empty XML document xpathNamespaces A text parameter that specifies the namespace declarations...
  • 7
  • 442
  • 0
Tài liệu Using XSD Schema Files to Load and Save a DataSet Structure pptx

Tài liệu Using XSD Schema Files to Load and Save a DataSet Structure pptx

Kỹ thuật lập trình

... System.EventArgs e) { DataSet ds = new DataSet( ); SqlDataAdapter da; // Fill the Order table and add it to the DataSet da = new SqlDataAdapter("SELECT * FROM Orders", ConfigurationSettings.AppSettings["Sql_ConnectString"]); ... ConfigurationSettings.AppSettings["Sql_ConnectString"]); DataTable orderTable = new DataTable(ORDERS_TABLE); da.FillSchema(orderTable, SchemaType.Source); da.Fill(orderTable); ds.Tables.Add(orderTable); // Fill the OrderDetails table and add it to ... the DataSet da = new SqlDataAdapter("SELECT * FROM [Order Details]", ConfigurationSettings.AppSettings["Sql_ConnectString"]); DataTable orderDetailTable = new DataTable(ORDERDETAILS_TABLE); da.FillSchema(orderDetailTable,...
  • 8
  • 403
  • 0
Tài liệu Do Firms Want to Borrow More? Testing Credit Constraints Using a Directed Lending Program doc

Tài liệu Do Firms Want to Borrow More? Testing Credit Constraints Using a Directed Lending Program doc

Ngân hàng - Tín dụng

... Indian banking industry, Sankarnaranayan for his work collecting the data, Dean Yang and Niki Klonaris for excellent research assistance, and Robert Barro, Sugato Battacharya, Gary Becker, Shawn ... Niki Klonaris for excellent research assistance, and Robert Barro, Sugato Battacharya, Gary Becker, Shawn Cole, Ehanan Helpman, Sendhil Mullainathan, Kevin Murphy, Raghuram Rajan and Christopher ... the sample where we observe a change in loans 25 constrained and access to market capital increases very fast as a function of access to bank capital, to the point where total capital stock goes...
  • 53
  • 350
  • 0
Tài liệu Báo cáo khoa học:

Tài liệu Báo cáo khoa học: "Using Automatically Transcribed Dialogs to Learn User Models in a Spoken Dialog System" doc

Báo cáo khoa học

... future applications, such as continuous learning of a user model while the dialog system is on-line, enabling automatic adaptation References −5 Truth Manual EM Automatic −6 −7 −8 Manual EM Automatic ... which is the actual parameter θ used to generated the data The EM method has to estimate a larger number of parameters than the Automatic method (1344 vs 168) But as Figure shows, after observing ... estimate using automatically transcribed data, i.e., θasu = e KD P as D e a Kas This approach ignores transcription errors and assumes that user behavior depends only on the observed data EM:...
  • 4
  • 470
  • 0
Therapeutic ultrasound as a potential male contraceptive: power, frequency and temperature required to deplete rat testes of meiotic cells and epididymides of sperm determined using a commercially available system doc

Therapeutic ultrasound as a potential male contraceptive: power, frequency and temperature required to deplete rat testes of meiotic cells and epididymides of sperm determined using a commercially available system doc

Sức khỏe phụ nữ

... The transducer was affixed to an offset cam to allow it to rotate in a horizontal plane against the bottom of the ultrasound chamber during treatment Ultrasound gel was used to coat the transducer ... breeders served as untreated controls Sham-treated animals underwent all preparations for ultrasound treatment as treated animals: anesthesia was administered and maintained at - 2.5% isoflurane/oxygen, ... Methods Animals All animal work was approved by the Institutional Animal Care and Use Committee (IACUC) of Integrated Laboratory Systems (ILS, Research Triangle Park, North Carolina, USA) or by...
  • 15
  • 967
  • 0
Using a Spend Analysis to Help Identify Prospective Air Force Purchasing and Supply Management Initiatives - Summary of Selected Findings potx

Using a Spend Analysis to Help Identify Prospective Air Force Purchasing and Supply Management Initiatives - Summary of Selected Findings potx

Khoa học xã hội

... and analyze spend analysis data that can lead to improved PSM practices -7- What Is aaSpend Analysis? What Is Spend Analysis? An in-depth analysis of purchases An in-depth analysis of purchases ... They also continually manage suppliers and the supply base In sum, a spend analysis integrates internal spend data and external supplier and market data and applies analytical and benchmarking ... data sources; gathering and integrating additional data on suppliers, markets, internal Air Force requirements, and market factors; maintaining substantial computational capability and experts to...
  • 105
  • 394
  • 0
A Guide to the Analysis of Fish Marketing Systems Using a Combination of Sub-sector Analysis and the Sustainable Livelihoods Approach potx

A Guide to the Analysis of Fish Marketing Systems Using a Combination of Sub-sector Analysis and the Sustainable Livelihoods Approach potx

Tiếp thị - Bán hàng

... Fisheries Research Programme PLA Participatory Learning and Action PPA Participatory Poverty Assessment PRA Participatory Rural Appraisal RMA Rapid Market Appraisal RRA Rapid Rural Appraisal SCP Structure, ... approach to initial project preparation was developed By the end of the decade, there was a range of RRA methods and approaches available which then gave rise to participatory rural appraisal (PRA) ... from a different area or family are disadvantaged, as they have to work their way in and probably have to learn the hard way, by learning from their mistakes The SLA embraces a wider approach to...
  • 95
  • 645
  • 0
Báo cáo khoa học:

Báo cáo khoa học: "A new Approach to Improving Multilingual Summarization using a Genetic Algorithm" pptx

Báo cáo khoa học

... of Language Resources and Evaluation We are grateful to Michael Elhadad and Galina Volk from Ben-Gurion University for providing the ROUGE toolkit adapted to the Hebrew alphabet, and to Slava Kisilevich ... 1997 Automatic text structuring and summarization Information Processing and Management, 33(2):193– 207 C N Satoshi, S Satoshi, M Murata, K Uchimoto, M Utiyama, and H Isahara 2001 Sentence extraction ... parameters for a keyword extractor embedded in the Extractor tool.3 Or˘ san et al (2000) enhanced the a preference-based anaphora resolution algorithms by using a GA to find an optimal set of values for...
  • 10
  • 598
  • 0
Báo cáo khoa học:

Báo cáo khoa học: "Using a Randomised Controlled Clinical Trial to Evaluate an NLG System" doc

Báo cáo khoa học

... cigarettes and ashtrays the day before When you stop, take one day at a time; don't look too far ahead If it gets tough Many people hit rough patches; there are ways to deal with these On the back page ... not a replacement for, the clinical trial When is a Clinical Trial Appropriate? When is it appropriate to evaluate an NLG system with a large-scale task or effectiveness evaluation which compares ... thanks to the rest of the STOP team, and especially to Ian McCann and Annette Hermse for their work in the clinical trial Thanks also to Yaji Sripada, Sandra Williams, and the anonymous reviewers for...
  • 8
  • 244
  • 0
Báo cáo khoa học:

Báo cáo khoa học: "Extending a Surface Realizer to Generate Coherent Discourse" docx

Báo cáo khoa học

... Poincare - Nancy J Robin 1994 Revision-based generation of Natural Language Summaries providing historical Background Ph.D thesis, Columbia University J Shaw 2002 Clause Aggregation: An approach to ... generation inspired by Tree Adjoining Grammar In A Abeille and O Rambow, editors, Tree Adjoining Grammars: Formalisms, linguistic analysis and processing, pages 343–370 CSLI, Stanford, CA C Gardent ... section was implemented in the GenI surface realizer (Kow, 2007), which uses a lexicalized feature-based Tree Adjoining Grammar to generate all possible paraphrases for a given flat semantic input...
  • 4
  • 181
  • 0
Báo cáo khoa học:

Báo cáo khoa học: "Using Machine Learning Techniques to Build a Comma Checker for Basque" pdf

Báo cáo khoa học

... Cambridge (MA) Acknowledgements We would like to thank all the people who have collaborated in this research: Juan Garzia, Joxe Ramon Etxeberria, Igone Zabala, Juan Carlos Odriozola, Agurtzane ... and Computational Linguistics Mexico City (Mexico) References Aduriz I., Aranzabe M., Arriola J., Díaz de Ilarraza A. , Gojenola K., Oronoz M., Uria L 2004 A Cascaded Syntactic Analyser for Basque ... comma for the Basque language was formalised This information was extracted after analysing the theories of some experts in Basque syntax and punctuation (Aldezabal et al., 2003) In fact, although...
  • 8
  • 385
  • 0
báo cáo hóa học:

báo cáo hóa học: " Intervention to enhance skilled arm and hand movements after stroke: A feasibility study using a new virtual reality system" pot

Hóa học - Dầu khí

... paretic hand via a magnetic marker placed either in the palmar surface of a glove or directly onto the dorsum of the hand at the 3rd metacarpal head Both visual and auditory feedback indicates successful ... design, data analysis and interpretation, and drafted the manuscript SY, YJ, HJ, and LL participated in system design and data analysis MW and SC designed and coordinated the experimental protocol ... post-training to assess participation and health status [15] Procedure Each participant attended 12 training sessions lasting 1–2 hrs/day over weeks A physical or occupational therapist was present...
  • 6
  • 432
  • 0

Xem thêm