tag 标签: notebook

相关博文
  • 热度 14
    2016-1-21 17:50
    2746 次阅读|
    0 个评论
    For engineers and scientists, notebooks are a reliable means to document their ideas, inventions, progress, and even their missteps. Some of the most notable engineers and scientists who used notebooks include Nikola Tesla, Albert Einstein, and Leonardo da Vinci. In fact, mankind would know very little of da Vinci’s discoveries had he not written them down in a notebook. One problem facing engineers today is that the paper-bound notebook is an inefficient means for recording information in a society driven by computer technology. It's time to upgrade the engineering notebook for the 21st century.   So what does a modern engineering notebook look like?   A modern engineering notebook, whether for an individual or a team, must be capable of synchronization through the cloud. Engineers today don’t just use PCs; they rely on mobile devices such as tablets or cell phones to document their work. An engineer must be able to track and record notes on any of these devices and have the notes seamlessly synchronize with one another. The notebook medium must also be capable of potentially having multiple engineers working within the same notebook simultaneously in order to prevent synchronization issues.     Paper- bound notebooks are great for writing in but whenever an image or graph needs to be recorded, engineers need to pull out the scissors, tape, and glue to meticulously insert the image into the notebook. Not only is inserting images into a paper notebook time consuming, it can potentially be dangerous for a software engineer working in dimly lit conditions (scissors are sharp and pointy). The use of a modern electronic notebook to add images or graphs is trivial! Many software packages have built in snipping or screen-grabber tools that allow images to be captured in seconds with only digital scissors being required!     So far an electronic engineering notebook sounds promising, but what happens when an engineer needs to insert a hand drawing? In a paperbound notebook an engineer would simply draw out the diagram, and many software packages designed to work as a notebook include manual drawing tools, but drawing on a PC can seem uncomfortable and inefficient. The use of a tablet and stylus can give an engineer the same efficiency and feel of a paper notebook while taking advantage of the digital tools available to modern engineers. The main caveat in hand drawing on a tablet is to make sure the stylus being used has a narrow tip. Otherwise, drawing feels awkward.   An electronic notebook also has the ability to attach or link ancillary materials such as spreadsheets, drawings, PDFs, or power point presentations, to name a few. The attached files can be embedded in the notebook, if one wishes, so that a page in the notebook always contains the most up to date information. Or the attached file can remain a snapshot in time. The modern notebook's electronic nature allows any type of digital medium -- whether it be camera images or even CAD data -- to be seamlessly inserted into the notebook. The capabilities of an electronic engineering notebook make it critical to engineers and scientists.   Given all these capabilities of an electronic engineering notebook, one might expect that they are already being used and wonder what software packages are available. A first thought might be to use something similar to Microsoft Word. The problem with Word, while it is very capable, is that it lacks many of the synchronization and multi-user capabilities that are required for a truly modern engineering notebook. So what else is available?   There are three different software packages that immediately come to mind that would make great first attempts for an electronic notebook; Evernote, OneNote, and Wikis. Evernote and OneNote provide an engineer with very similar capabilities although those capabilities are provided through different user interfaces and price points. Both provide PC, Web, and mobile device interfaces and allow different notebooks to be created with notes, drawings, and other useful tools. The software is setup for multiple users and integrates many of the must-have features discussed above, such as synchronization.   Wikis don’t provide the synchronization features or many of the mobile device features that are available through Evernote or OneNote but they can still be a great way to create a modern engineering notebook. A wiki can be installed on a team server and act as a body of knowledge for a project. Adding images and drawing are slightly more challenging, though. Still, a wiki can be a good solution for teams that don’t want their data streaming through the cloud or lurking on developers’ mobile devices.   One thing is certain, engineers and scientists need notebooks to keep their thoughts straight, monitor progress, collect relevant information about a project, and to share ideas. Paper notebooks no longer fit many of these needs efficiently. But an electronic notebook can prove to be exactly what engineers need to effectively track their thoughts in a digital age.   How do you manage your modern-day engineering notebook?   Jacob Beningo is principal consultant at Beningo Engineering, an embedded software consulting company. Jacob has experience developing, reviewing and critiquing drivers, frameworks and application code for companies requiring robust and scalable firmware. Jacob is actively involved in improving the general understanding of embedded software development through workshops, webinars and blogging.
  • 热度 16
    2014-12-18 20:03
    1627 次阅读|
    0 个评论
    When I attended college, it was the mainframe days. The school had one computer for its 40,000 students, a huge dual-processor Univac 1108. Eight or ten tape drives whirred; a handful of disk drives hummed, and two drum storage units spun their six-foot-long cylinders. After 3:00 AM the machine was given over to the systems staff for maintenance of the various utilities. We’d sometimes take over the entire machine to play Space Wars; the university’s sole graphic display showed a circle representing a planet and another representing the spaceship, which the players could maneuver. Part of the game’s attraction was that, with the $10 million dollars of computational power fully engaged, it could even model gravitational force in real time.     There was some access to the machine via ASR-33 teletypes (properly called ‘teletypewriters’). But most folks submitted jobs in decks of punched cards. A box held 2000 cards – a 2000 line program. It wasn’t unusual to see grad students struggling along with a stack of five or more boxes of cards holding a single program. Data, too, was on the cards. And, how one felt after dropping a stack of cards and seeing them scrambled all over the floor! A user would walk up to the counter in the computer science building with the stack of cards. The High Priest of Computing gravely intoned turn-around times, typically 24 hours. That meant the entire edit, compile, test cycle was a full day and night. Stupid errors cost days, weeks, and months. But stupid errors abounded. If a FORTRAN program had more than 50 compile-time flaws the compiler printed a picture of Alfred E. Neumann with the caption “this man never worries, but from the look of your code, you should.” Something was invented to find the most egregious mistakes: playing computer. You’d get a listing and execute the code absolutely literally in your head. That technique has evolved into the modern process of inspections, which too few of us use. Instead, the typical developer quickly writes some code, goes through the build, and starts debugging. Encountering a bug he may quickly change that “=” to a “”, rebuild, and resume testing. The tools are so good the iterations happen at light-speed, but, unfortunately, there’s little incentive to really think through the implications of the change. Subtle bugs sneak in. In maneuvering vessels in orbit one slows down in order to speed up, and I think we need a similar strategy while debugging code. A bug may mean there’s a lot of poorly-understood stuff going on that demands careful thought. I recommend that developers use engineering notebooks or their electronic equivalent. When you run into a bug take your hands off the keyboard and record the symptom in the notebook. Write down everything you know about it. Some debugging might be needed – single stepping, traces, and breakpoints. Log the results of each step. When you come up with a solution, don’t implement it. Instead, write that down, too, and only then fix the code.   But maybe this is not the best model... The result is that instead of spending two seconds not really thinking things through, you’ve devoted half a minute or so to really noodling out what is going on. The odds of getting a correct fix go up. But wait, there’s more. Go over your engineering notebook every 6 to 12 months. The patterns it will reveal are surprising. When I started doing this it became embarrassingly clear that I’m always mixing up “==” and “=”. So now I’m quite careful when typing those operators, so never make that mistake. This is a feedback loop that improves our abilities. But there’s even more! Have you ever watched (or participated in) a debugging session that lasts days or weeks? There’s a bug that’s just impossible to find. We run all sorts of tests. Almost inevitably we’ll forget what tests we ran and repeat work done a day or a week ago. The engineering notebook is a complete record of those tests. It gives us a more scientific way to guide our debugging efforts and speeds up the process by reminding us of what we’ve already done. The engineering notebook is top secret. No boss should have access to it. This is a tool designed for personal improvement only. What’s your take? Do you use any sorts of tools to guide your debugging efforts (outside of normal troubleshooting tools)?
  • 热度 19
    2012-11-16 14:52
    3523 次阅读|
    0 个评论
    More unwelcome news for the struggling PC industry: According to IHS iSuppli, consumers will continue to favour lower-end desktop PCs and notebook computers over high-performance models for the rest of this year and beyond. Top-end systems, priced at $1,000 and up, will account for only 6 per cent of the PC market in 2012, according to an IHS report. So-called "performance" systems are expected to account for 6 per cent of desktop PCs sold this year and 9 per cent of notebooks, according to the firm. In desktops, IHS expects both "mainstream" and "value" PCs to each take about 47 per cent of the market. In notebooks, the firm expects low-end systems—priced at below $500—to take about 47 per cent of the market, with midrange notebooks—priced at between $500 and $1,000—expected to account for about 44 per cent of the market. To recap, last month IHS forecast that PC sales would decline this year for the first time since 2001. Intel Corp. and OEMs are hoping to revive the market with compelling new ultra-thin, ultra-light notebooks that have thus far not caught on in a big way, largely due to their comparably high prices. IHS's latest report can't bode well for the Intel camp. The chip giant is banking on consumers being willing to pay higher prices for systems that bring many of the features that have been a hit in tablets to a form factor that more closely resembles a traditional PC. But the IHS data suggests that consumers are very willing to accept what's available in a low-end or mid-range as long as it costs them less. "For the desktop as well as the notebook PC market, the continuing domination of lower-end computers is due to the rising performance overall of PCs and their greater affordability to the purchasing public," said Peter Lin, senior analyst for compute platforms at IHS, in a statement. According to Lin, PCs now categorised in the mainstream or value segments—while not as powerful or feature rich as the high-end systems—are powerful enough in their own right. "These more affordable systems feature current-generation technologies that prove adequate for most uses, or boast increased microprocessor power that raises the performance bar even for seemingly rudimentary machines," Lin said. As processors become more powerful, IHS expects more computers to ship with increased computing capability. Quad-core processors, for example, will be found in 179 million notebook PCs by 2016—about 59 per cent of all notebooks expected to be in the market by then, according to IHS. Much has been said and written about the dawn of the post PC era. Consumers are proving willing to forgo new PC purchases in favour of tablets, smartphones and other mobile devices that are more convenient to use and offer some but not all of the capabilities of PCs. For those customers who are buying new PCs, the top of the line is not worth the extra money. With mid- and low-end PCs sporting more powerful processors, the overwhelming majority of people simply don't feel like digging deeper in their wallets for bleeding edge technology.  
相关资源
  • 所需E币: 0
    时间: 2020-9-18 10:45
    大小: 59.5KB
    上传者: czd886
    MATLABNotebook的使用方法
  • 所需E币: 5
    时间: 2020-4-3 15:52
    大小: 3.12KB
    上传者: 238112554_qq
    电源知识详解,结合笔记本电源,讲解电源知识,相对来说还是比较...,Notebook电源……
  • 所需E币: 3
    时间: 2019-12-27 21:01
    大小: 780.8KB
    上传者: givh79_163.com
    本手册提供的使用TEA1733(L)T的65瓦GreenChip演示板规格,性能,原理图及印刷电路板布局。UM10385GreenChip65WTEA1733(L)TdemoboardRev.02―2June2010UsermanualDocumentinformationInfoContentKeywordsNotebookadapter,TEA1733(L)T,Lowstandbypower,Highefficiency,fixedfrequencyflyback,jitterAbstractThismanualprovidesthespecification,schematics,andPrinted-CircuitBoard(PCB)layoutofthe65WTEA1733(L)Tdemoboard.FordetailsontheTEA1733(L)TICpleaserefertotheapplicationnote.NXPSemiconductorsUM10385……
  • 所需E币: 5
    时间: 2019-12-27 21:01
    大小: 2.35MB
    上传者: wsu_w_hotmail.com
    本手册提供65瓦TEA1738LT/T和TEA1703的规范,原理图和PCB布局演示板。UM10437GreenChip65WTEA1738LT/TandTEA1703demoboardRev.1―28February2011UsermanualDocumentinformationInfoContentKeywordsNotebookadapter,TEA1738LT/T,TEA1703,fixedfrequency,ultra-lowstandbypower,high-efficiency,slimlineAbstractThismanualprovidesthespecification,schematicsandPCBlayoutofthe65WTEA1738LT/TandTEA1703demoboard.FordetailsontheTEA1738LT/TorTEA1703ICpleaserefertotheapplicationnote.NXPSemiconductorsUM10437……
  • 所需E币: 3
    时间: 2019-12-27 21:02
    大小: 2.39MB
    上传者: 16245458_qq.com
    本用户手册描述了一个典型的基于EA1713T90W笔记本电脑适配器谐振开关模式电源的设计。UM10450TEA1713demoboardfor90WnotebookadapterRev.1―11April2011UsermanualDocumentinformationInfoContentKeywordsTEA1713T,90W,notebookadapter,LLC,resonant,half-bridge,PFC,controller,converter,burstmode,powersupply,demoboard.AbstractTheTEA1713TincludesaPowerFactorCorrection(PFC)controlleraswellasacontrollerforaHalf-BridgeresonantConverter(HBC).Thisusermanualdescribesa90WresonantswitchingmodepowersupplyforatypicalnotebookadapterdesignbasedontheTEA1713T.Theboardprovidesanoutputof19.5V/4.……
  • 所需E币: 5
    时间: 2019-12-24 20:21
    大小: 89.44KB
    上传者: 978461154_qq
    摘要:MAX14885E,一个完全集成的低电容VGA双显卡交叉开关连接到VGA显示器的VGA源。本文介绍了MAX14885E的两个的电源,VCC和VL,适当的排序在开机。Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>AnalogSwitchesandMultiplexers>APP5314Keywords:VGA,VideoGraphicsArray,VGASwitch,notebook,graphicscontrollerJan24,2012APPLICATIONNOTE5314PowerSequencingtheMAX14885EVGACrossoverSwitchBy:MichealScherrenburgJan24,2012Abstract:TheMAX14885E,afullyintegratedlow-capacitanceVGAdual-graphicscrossoverswitch,connectsaVGAsourcetoaVGAmonitor.ThisapplicationnoteexplainsthepropersequencingoftheMAX14885E’stwopowersupplies,VCCandVL,onpower-up.IntroductionTheMAX14885E,a2:2VGAswitch,connectsaVGAsourcetoaVGAmonitor.Toeasedirectco……
  • 所需E币: 4
    时间: 2019-12-24 19:16
    大小: 137.77KB
    上传者: rdg1993
    摘要:电子设备越来越小,重量更轻,功能更强大,推动技术进步和客户需求的拉动下。这些要求的结果一直在电池技术和快速进步,在电池充电和保护电路。Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>BatteryManagement>APP676Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>Power-SupplyCircuits>APP676Keywords:battery,lithiumion,Li+,NiCd,NiMH,LiPo,lithiumpolymer,alkaline,laptop,notebook,batterychargerNov15,2011APPLICATIONNOTE676NewDevelopmentsinBatteryChargersNov15,2011Abstract:Electronicequipmentisincreasinglybecomingsmaller,lighter,andmorefunctional,thankstothepushoftechnologicaladvancementsandthepullfromcustomerdemand.Theresultofthesedemandshasbeenrapidadvancesinbatterytechnologyandintheassociatedcircu……
  • 所需E币: 4
    时间: 2019-12-24 18:43
    大小: 131.59KB
    上传者: quw431979_163.com
    摘要:笔记本电脑越来越多地需要复杂的电池充电算法和系统。本文提供的信息和背景上的锂离子(Li+),镍镉(NiCd),镍金属氢化物(NiMH)电池及相关系统级开关模式和线性电池充电器。这些稳压器和电流调节器像8051或Microchip的PIC的外部微处理器控制,并与这些控制器提供的例子。一个常见的化学电池充电电池充电器IC采用Maxim概述的要求,一起讨论系统级的贸易利益和固件设计技巧,以及万维网工程的资源列表。Maxim>Designsupport>Appnotes>BatteryManagement>APP680Maxim>Designsupport>Appnotes>Power-SupplyCircuits>APP680Keywords:linear,switch-mode,batterycharger,microcontroller,currentsource,switchingdc-dcconverter,notebookcomputer,lithium-ion,Li+,lithium,8051,NiCd,NiMH,NickelMetalHydride,MicrochipPIC,voltageregulator,currentregulatorsJul22,2002APPLICATIONNOTE680HowtoDesignBatteryChargerApplicationsthatRequireExternalMicrocontrollersandRelatedSystem-LevelIssuesAbstract:Notebookcomputersincreasinglyrequirecomplexbatterychargingalgorithmsandsystems.Thisarticleprovidesinformationandbackgroun……
  • 所需E币: 4
    时间: 2019-12-24 17:09
    大小: 85.93KB
    上传者: 978461154_qq
    摘要:绿色倡议带回家备用电源浪费问题。美国家庭通过减少其使用备用电源,可节省平均每年100美元。¹便携设备的电池寿命是非常重要的,但本应用笔记表明,节能家电在我们的家园也很关键,以减少对环境的废物。Maxim正在采取节能集成电路中的铅,这份文件列出了Maxim产品使用,以减少在家电,电脑,机顶盒的电源的例子。Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>BatteryManagement>APP4427Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>DigitalPotentiometers>APP4427Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>GeneralEngineeringTopics>APP4427Keywords:standbypower,energyefficient,budgetpower,microampere,computers,notebook,set-topbox,batterylife,remoteairconditioning,environmentalimpact,voltagereference,quiescent,bandgapOct10,2011APPLICATIONNOTE4427DemonstratingGreenTechnologywithApples,Oranges,Lemons,andLimesBy:BillLaumeister,StrategicApplicationsEngineerOct10,2011……
  • 所需E币: 4
    时间: 2020-1-10 12:40
    大小: 256.02KB
    上传者: wsu_w_hotmail.com
    免费,电脑主板的EMC设计,EMI_NOTEBOOK……
  • 所需E币: 3
    时间: 2020-1-13 09:51
    大小: 292.25KB
    上传者: givh79_163.com
    EMCDesignforNotebookApplicationsPanelLinkTechnologyEMCDesignApplicationNoteLCDMonitor&NotebookApplicationsRevisionBSiliconImage,Inc.RevisionBApril21,1998SiI/AN-0003-BSiliconImage,Inc.http://www.siimage.comSiI/AN-0003-BTABLEOFCONTENTS1.INTRODUCTION...............................................................................................................................42.MECHANICALCONSTRUCTION...................................................................................................42.1.USINGCONDUCTIVEPLASTICSANDCOATEDPLASTICS......................................................................42.2.METALCHASSIS..............................................................................................................................62.3.APERTURES......……
  • 所需E币: 3
    时间: 2020-1-13 11:15
    大小: 3.95MB
    上传者: 16245458_qq.com
    联想笔记本LAYOUT设计规范,NoteBookPCBlayoutguide……
  • 所需E币: 3
    时间: 2020-1-13 13:29
    大小: 50.67KB
    上传者: 二不过三
    NotebookBatterycircuit4.SchematicDrawing.-8-……
  • 所需E币: 3
    时间: 2020-1-6 13:10
    大小: 113.87KB
    上传者: 2iot
    NotebookPC……
  • 所需E币: 4
    时间: 2020-1-6 17:38
    大小: 78.09KB
    上传者: quw431979_163.com
    RenesasNotebookPC解决方案.pdf……