#onthree
Explore tagged Tumblr posts
Text
Mackin'
last night I wished onthree shooting stars, butoneslipped by,just outof view.until tonight,when I met you.
0 notes
Photo

š£Replace āI canātā with āI need helpā * * This week, throw out the idea that you ācanāt do itā and consider who or what can help you get it done. * * * Some weeks you might need more help then others, and thatās what help is for. Get help as often as you need & when you find yourself in a place to help go ahead & hand it out. * * * Assemble your systems, squad or whatever help you need to #getupandthrive * * * #alittlehelpplease #helpinghand #gothelp #needhelp #askforhelp #getbywithalittlehelp #getbywithalittlehelpfrommyfriends #onthree #liftwiththeknees #squadgoals #grabyoursquadandgoal #mindsetshift #mindsetmondays #mindyourmindset #dontdoitalone #whateveritis #letsthrivetogether #mondaymemories #tistheseasontohelp https://www.instagram.com/p/B-XnWwhHFb_/?igshid=jdo8s8o35cmc
#getupandthrive#alittlehelpplease#helpinghand#gothelp#needhelp#askforhelp#getbywithalittlehelp#getbywithalittlehelpfrommyfriends#onthree#liftwiththeknees#squadgoals#grabyoursquadandgoal#mindsetshift#mindsetmondays#mindyourmindset#dontdoitalone#whateveritis#letsthrivetogether#mondaymemories#tistheseasontohelp
0 notes
Photo

HighClass CC #highclasscc #crenshawsundays #lowriders #carclubs #cruisin #towncar #onthree
6 notes
Ā·
View notes
Text
GOOD morning it is karl vod time and my sweet prince Did in fact show up and i am on a whopping Seven? hours of sleep for once ^_^
#thebsleep is to make up for leaving my house tomorrow for the first time in months onthree hours š#VOD TIME tho#strawb.txt
1 note
Ā·
View note
Video
instagram
#š§ @treward360 - āNonchalantā (Produced by @bbarbermusic)
ALBUM ššš https://www.amazon.com/Far-Paradise-Explicit-Tre-Ward/dp/B06XNXB8BN?tag=smarturl-20 šŖšŖšŖ
#MusicMonday #TreWard #BBARBER #Nonchalant #TreWardDallas #FarFromParadise #MikeDubb #OnThree #LilGRIP #Artist #MusicProducer #RnB #HIPHOP #TrapSoul #Songs #stories #Records #SoundCollectiv #DallasUP
#š§#songs#mikedubb#soundcollectiv#musicproducer#treward#bbarber#artist#dallasup#stories#trapsoul#hiphop#lilgrip#rnb#onthree#trewarddallas#records#farfromparadise#nonchalant
1 note
Ā·
View note
Video
youtube
APAHM Benefit Film Screening, May 24-31. All contributions go to assist local API and Desi American artists impacted by Covid-19 (update: contributions will now be redirected to Black Visions Collective, MN Freedom Fund, National Bailout, and Reclaim the BlockĀ as we observe our complicity in anti-blackness and recognize our own privilege) will be matched 69%* by moonroom. IG: @moonroomieāĀ ā¢Ā Venmo: moonroomĀ
CONFLUENCE is a meditation in documentary form filmed during last seasonās PHASE series, channeling reflections on identity and Asian Pacific American Heritage Month. ⢠Directed by ETA ⢠Featuring interviews with Ceramiks, Jangus Kangus, Kelleia, Laciste, Oh My Muu, Reinabe, Shunkan, and Zhao ⢠Music by Sonoda, Tomemitsu and ZhaoĀ ā¢
⢠Co-Presenters: Athame Records, Girl Underground Music, OnThree Management, Zoom Lens ā¢Ā Community Partners: API Equality-LA,Ā Chewing Foil, Enclave LA, Pehrspace, QNA, Sleezehog Presents, Sunday Jump,Ā Week in Pop ā¢
Listen to our APAHM PHASE playlist featuring API and Desi American artists and bands whoāve participated in our annual showcases since 2017 here.
3 notes
Ā·
View notes
Video
instagram
that must hurt. #animation #suzanj #digitalart #toonbooming #digitalanimation #huion #fall #crash #onthree #illustration https://www.instagram.com/p/CAAewyiB01n/?igshid=143qd1x907qt7
0 notes
Video
Such fun times playing with these awesome women! Can we please make a habit of this??? @laurennavon @itshighley @aerialalley @jeiranr @evilzitrone @tcup_bunny57 #wedidit #onthree? #aerialist #aerialsilks #lyra #training #dancer #happyplace #jjsgym #youguysready #yay
0 notes
Text
Iris Publishers
CUDA-based Accelerated FEM Calculation
Authored by Cankun Zheng
The Finite Element Method (FEM) had been widely used in engineering applications. There are two bottleneck issues in the FEM calculation. The first one is how to minimize computer memory demand so that to be able to run large-scale simulations using limited computational resources. The second one is how to carry out simulation as fast as possible to complete a large-scale simulation job. A standard finite element analysis always results in solving simultaneous linear equations. Overall, a global stiffness matrix of a finite element simulation often has sparse, symmetric, and positive definite characteristics. To overcome the first issue, we proposed integrating and storing stiffness matrix using the Compressed Sparse Row (CSR) format in this paper. We proposed to carry out parallel computing to solve simultaneous equations using the cuBlAS, cuSPARSE, and cuSOLVER libraries on the Compute Unified Device Architecture (CUDA) platform to overcome the second issue. The aim of this article is to explore the possibility to solve simultaneous equations with sparse matrix using CUDA libraries. Three algorithms of cuSOLVER libraries were evaluated through case studies. The three algorithms include the QR factorization, incomplete LU factorization, and the conjugate gradient methods. We have evaluated the efficiency, accuracy and capacity of the algorithms. Two type of case studies were investigated in the numerical experiments. First type of sparse matrix were downloaded from the Florida Sparse Matrix Collection and second type of matrix were assembled from truss structure using FEM. Numerical experiment results showed that, the accuracy of incomplete LU factorization is unacceptable, the capacity of the QR factorization is weak, since the GPU memory demand is higher. The efficiency, capacity and accuracy of the conjugate gradient methods all are satisfied. However, it may break down for some particular cases.
Keywords: FEM; cuSPARSE; cuBLAS; cuSOLVER; Compressed sparse row format matrix; QR Factorization; Incomplete LU Factorization; Conjugate gradient
Introduction
For many large-scale FEM calculations, solving sparse linear equations takes up most of the computing time and resources. Taking the static analysis of structures using the finite element method as an example, the solution of sparse linear equations usually accounts for more than 70% of the whole analysis time [1]. With the continuous expansion of engineering scale and the continuous improvement of engineering complexity, higher requirements are put forward for the scale and speed of solving sparse linear equations. Therefore, the use of high-performance computing is a critical way to solve sparse linear equations.
Nowadays, the direct method and the iterative method are the two most popular methods to solve sparse linear equations. The direct process is to transform the coefficient matrix of the equationsinto a triangular matrix and then use the back-substitution method or the pursuit method to get the solution of the equations. The iterative approach is a process of constructing an infinite sequence to approximate the exact solution from an approximate initial valueof the solution. The rest of the paper is organized as follows: Section 2 gives a brief description of the CUDA platform. We focus onthree essential libraries of CUDA Toolkit, cuBLAS, cuSOLVER, and cuSPARSE. Section 3 defines the CSR storage format, which was used in this paper. Section 4 demonstrates how cuBLAS, cuSOLVER and cuSPARSE were implemented in detail and error analysis. Section 5 shows two types of case studies to solve sparse simultaneousequations. In the first type of case study, the matrix was download from the Sparse Matrix Library [2]. The second type of case study is an example to analyze truss structure using FEM. Section 6 is the Global Journal of Engineering Sciences Volume 8-Issue 4Citation: Cankun Zheng, Wenhao Lin, Jiujiang Zhu. CUDA-based Accelerated FEM Calculation. Glob J Eng Sci. 8(4): 2021. GJES.MS.ID.000690. DOI: 10.33552/GJES.2021.08.000690.Page 2 of 8 conclusion.
CUDA Platform
The CUDA platform allows developers to use the C language as a development language and also supports other programming languages or interfaces. Under the CUDA architecture, a program is divided into two parts: the Host side, which is executed serially on the CPU, and the Device side (also known as the kernel), which is implemented in parallel on the graphics card. Usually, the execution model of a complete program is that the host side prepares the data and copies it to the graphics cardās memory. The GPU executes the kernel program of the device side for parallel calculation. After the calculation is completed, the result is sent back to the host side from the memory of the graphics card [3]. The cuBLAS library implements BLAS (Basic Linear Algebra Subprograms) on top of the NVIDIA Ā®CUDATM runtime [4]. The cuBLAS library is mainly used for matrix operation. It contains two sets of API. One is the commonly used cuBLAS API, which requires users to allocate GPU memory space and fill in data according to the specified format. The other one is cuBLASXT API, which Ā an assign data at the CPU end, then call function. It will automatically manage memory and perform computation [5]. In practice, the first set of APIs is usually used.
The cuSPARSE library contains a set of basic linear algebra subroutines used for handling sparse matrices. The goal of the standard library is a matrix with a certain number of (structurally) zero elements that represent >95% of the total entries. It is implemented on top of the NVIDIA ®CUDATM runtime (part of CUDA Toolkit). And it is designed to be called from C and C++ [6].
cuSPARSE is acollection of column interfaces. And the main advantage is that itonly needs to call the corresponding API when the users write the host code. So, it can save a lot of development time, and this library also supports many data formats. cuSlOLVER is an advanced library. It is based on the cuBLAS and cuSPARES library and includes matrix factorization and solving equations. It contains three independent library files, including cuolverDN, cuSolverSP, and cuSolverRF. The cuSolverDN can performdense matrix factorization (LU, QR, SVD, LDLT), while the cuSolverSP is a new toolset to manipulate sparse matrices, such as to solvesimultaneous equations with sparse matrix. The cuSolverRF is asparse refactoring package [7].
Storage Format
In solving the simultaneous sparse linear equation, the coefficient matrix is sparse. Therefore, the selection of storage format is crucial to reduce the storage of unnecessary zeros, and it is also imperative to improve the performance of its operation. We mainly introduce the compressed sparse row format used in this paper. CSR format is a mainstream general sparse matrix representation format, which stores column indices and nonzero values in array columns and array values [8].
Implementation Method and Relative Error Analysis Based on cuBlAS, cuSPARSE, and cuSOLVER
The solution methods of large sparse linear equations usually include the direct method and the iterative method. QR Factorization QR factorization is based on matrix factorization. Based on elimination, the linear equations are transformed into several equivalent sub-problems, which are easy to be calculated and solved in turn. Theoretically, the exact solution of the system of equations can be obtained by the direct method in a fixed number of steps without considering the accumulative numerical error.
⢠Apply for variable memory space on the GPU and transfer Col, row, Val and b from the CPU to the GPU.
⢠Find the final X value by calling cusolverSpDcsrlsvqr.
⢠Return the X value from the GPU side to the CPU side.
Incomplete LU Factorization
Incomplete LU factorization is an iterative solution method, which is related to the LU factorization method. The LU factorization method is a direct solution method. When the matrix A is asparse matrix, the matrix L and U lose the sparse characteristics of the matrix A. The storage cost of the matrix that loses the sparse property will increase, so the incomplete LU factorization method Citation: Cankun Zheng, Wenhao Lin, Jiujiang Zhu. CUDA-based Accelerated FEM Calculation. Glob J Eng Sci. 8(4): 2021. GJES.MS.ID.000690. DOI: 10.33552/GJES.2021.08.000690.Global Journal of Engineering Sciences Volume 8-Issue 4 Page 3 of 8 is proposed in [9], so that the iterative matrix K in A = K ā R satisfies:
K = L X U and the matrices L and U have the sparse property. The algorithm of incomplete LU factorization can be described as follows: Operations on sparse matrices stored in CSR format have been provided in the cuSPARSE library. Call the cusparseDcsrilu02 function to decompose the matrix into a unit lower triangular matrix Land an upper triangular matrix U. Call the cusparseDcsrsv2 _ solve function to find the value of the matrix Z, and then repeat the call to find the final value X. In this way, the algorithm of incomplete LU factorization is completed by calling the corresponding function through the cuSPARSE library. This article refers to this algorithm as cuSPARSE_LU. The specific algorithm flow is as follows:
⢠Apply for variable memory space on the GPU and transfer Col, row, Val and b from the CPU to the GPU.
⢠By calling cusparseCreateMatDescr, cusparseSetMatIndex Base, cusparseSetMatType, cusparSESetMatFillMode, CusparseSetMatDiagType creates descriptors of matrix A, matrix L, and matrix U, and opens the corresponding memory by calling csru02Info_t and csrsv2Info_t.
⢠Analyze the LU by calling cusparseDcsru02_analysis, cusparseDcsrsv2_analysis.
⢠The matrix K is decomposed into a lower triangular matrix Land an upper triangular matrix U by calling cusparseDcsrilu02 and cusparseXcsrilu02_zeroPivot.
⢠Solve the value of matrix Z by calling cusparseDcsrsv2_to solve.
⢠Find the final X value by calling cusparseDcsrsv2_to solve.
⢠Return the X value from the GPU side to the CPU side.
Conjugate gradient method
The conjugate gradient method is one of the most commonly used iterative methods for solving linear equations [10]. The conjugate gradient method uses successive approximation, generally using the iterative formula to get a series of approximate solutionsgradually approaching the real solution, and finally get the approximate solution satisfying certain error tolerance.
The conjugate gradient algorithm is described as follows:
1) Set Initial guessed value X0.
The solution of this conjugate gradient method calls the cuBLAS and cuSPARSE libraries. Although each step of the conjugate gradient method is serial, it mainly involves sparse matrix and vector multiplication, vector and vector dot multiplication, vector update, and scalar division in the whole algorithm process. These operations can all involve data-level parallelism, thus enabling GPU parallel computing. That is to say, GPU is responsible for the parallel calculation between matrix and vector, vector and vector before iteration and in each iteration, and CPU is responsible for the control of iteration loop and convergence condition, as well as the operation of scalar multiplication. Operations on sparse matrices store in CSR format have been provided in the cuSPARSE library. By calling the cusparseSpMV function in the cuSPARSE library, a sparse matrix stored in CSR format can be multiplied by a vector. The operation of two-vector dot multiplication can be realized by calling the cublasDdot function in the cuBLAS library. The vector update is implemented by calling the cublasDaxpy function in the cuBLAS library. In this way, the cuSPARSE library and the cuBLAS library can be used to call the corresponding functions for the conjugate gradient algorithm. This article refers to this algorithm as cuSPARSE_CG.
The specific algorithm flow path is as follows:
Global Journal of Engineering Sciences Volume 8-Issue 4Citation: Cankun Zheng, Wenhao Lin, Jiujiang Zhu. CUDA-based Accelerated FEM Calculation. Glob J Eng Sci. 8(4): 2021. GJES.MS.ID.000690. DOI: 10.33552/GJES.2021.08.000690.
Page 4 of 8
⢠Apply memory space for variables on the GPU, and trans-
Comparison of QR Factorization, Incomplete LU Factorization and Conjugate Gradient Method for Solving Truss Structure using FEM
The overall stiffness matrix of the truss elements in this test is simple, the length L, cross-sectional area A and elastic modulus E of the truss are all set as 1, and the relative residual error is set at 10-6. The simple overall stiffness matrix results in that the QR factorization and incomplete LU factorization method have break neck calculation speeds. For example, to solve 100000 orders matrix equations, the computational time of the conjugate gradient is about 4.07 times more than that of the incomplete LU factorization, while the conjugate gradient computational time is about 2.64 times more than that of the QR factorization. Table 4 compares the computation time of solving the global stiffness matrix of the truss elements using the QR factorization, incomplete LU factorization, and the conjugate gradient method. The relative error analysis and comparison are shown in Table 5. The accuracies of both QR factorization and incomplete LU factorization are satisfied. For large-scale simulation, the conjugate gradient method was not convergent, i.e. the iteration steps are less than the total freedom of the system. For this particular structure, the conjugate gradient method only convergent when iteration steps equal the total freedom of the system. If the iteration steps equal the total freedom of the system, iteration solution equals exact solution. Table 4: Comparison of calculation time of three algorithms for truss structure.
Reason analysis: Although the computational efficiency of the conjugate gradient method and QR factorization in the Florida sparse library is slower than the incomplete LU factorization, the relative error of QR factorization and the conjugate gradient is much smaller than the incomplete LU factorization. Due to in incomplete LU factorization, some elements of the matrix R in Eq. (5) were dopped off; this causes incomplete LU factorization to be just an approximate method. Our testing results demonstrate that the accuracy of incomplete LU factorization is unacceptable for accurate engineering simulation. In practice, usually, incomplete LU factorization is only suitable to be used as a preprocessing. Although
both efficiency and accuracy of QR factorization are satisfied, our numerical experiments show that the GPU memory consumption of QR factorization is much higher than the other two methods. It means QR factorization is not suitable for large scall simulation, at least for some cheap GPUs. Our testing shows that, in most cases, the efficiency, accuracy, and capacity of conjugate gradient all are good enough for FEM simulation; however conjugate gradient may break down for some particular cases. For example, in our truss structure FEM simulation, if the iteration step is less than the total freedoms of the system, the residual error keeps as constant without change. If and only if when the iteration step equals the freedoms of the system, the residual error becomes zero, i.e., the iteration solution reaches the exact solution. For large-scale simulation, it is not feasible to make iteration steps equal the freedoms of the system. It needs a very long iteration time.
Conclusion and Future Work
In this paper, we have compared the computational efficiency, accuracy, and capability of three algorithms: QR factorization, incomplete LU factorization, and conjugate gradient method using cuBlAS, cuSPARSE, and cuSOLVER libraries. We have reached the following conclusions:
ļ§ In terms of computational efficiency, the incomplete LU factorization is the fastest, and the conjugate gradient is the slowest. The running speed of the incomplete LU factorization is 11.6 times faster than that of the conjugate gradient. The running speed of the QR factorization is 3.3 times faster than that of the conjugate gradient. ļ§ In terms of computational accuracy, both the QR factorization and the conjugate gradient methods are good enough for accurate engineering simulation. The incomplete LU factorization method is unacceptable. In terms of computational capacity, both the incomplete LU factorization and the conjugate gradient methods are acceptable. The QR factorization method requires too much GPU memory, so it is not suitable for large-scale simulation. To compare all three algorithms, we will find the conjugate gradient method is the best candidate for large-scale FEM simulation. However, the conjugate gradient method may break down for some particular cases. We proposed to combine the incomplete LU factorization and the conjugate gradient method in our future work. To use incomplete LU factorization as a preprocessing to carry out the precondition conjugate gradient simulation.
Acknowledgment
This research is supported by the project of āHigh Education funding of Guangdong Province: 2018KZDXM072ā; the College Studentsā Innovation and Entrepreneurship Project: 5031700602O6; the Natural Science Foundation of Guangdong Province:
Conflict of Interest
No conflict of interest.
To read more about this article:Ā https://irispublishers.com/gjes/pdf/GJES.MS.ID.000691.pdf
Indexing List of Iris Publishers: https://medium.com/@irispublishers/what-is-the-indexing-list-of-iris-publishers-4ace353e4eee
Iris publishers google scholar citations
:
https://scholar.google.co.in/scholar?hl=en&as_sdt=0%2C5&q=irispublishers&btnG=
0 notes
Note
Why is WYLEI on a very temp hold? š©š©š
Itās just while I finish Snared (hopefully tonight) and TOT. I canāt work onthree projects at once but Iām thinking of putting TOT on hold again to finish WYLEI11.
5 notes
Ā·
View notes
Photo

Congrats to @treward360 on the release of his debut album ā”ā”ā” #FarFromParadise!!! ššš https://itunes.apple.com/us/album/far-from-paradise/id1215700704 šŖšŖšŖ Available EVERYWHERE. Go get it!!! #iTunes #Apple #Spotify #Amazon #TreWard #TreWardDallas #Artist #MikeDubb #OnThree #LilGRIP #MusicProducer #RnB #HIPHOP #TrapSoul #Songs #stories #ProducerLife #Reason #Records #Album #SUPPORT #DALLAS #MUSIC #SoundCollectiv #DallasUP #BBARBER
#treward#amazon#spotify#apple#artist#records#trewarddallas#farfromparadise#bbarber#reason#onthree#dallas#songs#producerlife#music#musicproducer#soundcollectiv#mikedubb#rnb#album#hiphop#stories#lilgrip#trapsoul#itunes#dallasup#support
0 notes
Text
The 3 Eās of MHG
āWe obtain our tranquillity when you obtain your hard-earned moneyā
MHG is Florida's finest, best, and most trustworthy commercial collector agency. We are here to assist you with even the most sensitive debt-related difficulties, thanks to our customized and client-specific techniques. We strive to handle all of your debt-related problems through our debtor awareness program, which is updated regularly by our legal advisers.
We work with our bang onthree Eās strategy ā Experience, Eagleās Eye, and Excellent approach - to create a winning plan. Be the bulls of the market bulls with MHG, the bulls of the debt collector industry.There will be no more headaches or complaints.
With our Evaluated experience, Eagleās eye, and Excellent approach not a single or minute detail goes unnoticed that another competitor would otherwise miss. Our three E's set us apart from other agencies. We act precisely at the correct time,like feeding bait to your debtors.
With our unrivaled soft audit approach, excellent and committed team of experts, and cutting-edge collection procedure, we hit the mark every time we serve and represent ourselves as your receivable department.
Take legal control of your accounts with MHG!
0 notes
Text
How to make charcoal in Minecraft

How to make charcoal in Minecraft - In the end, you too have decided to venture into the world of Minecraft, the iconic ācubeā video game created by Markus Persson (and now owned by Microsoft). The style of this title fascinated you a lot, to the point that you immediately immersed yourself in its mechanics and slowly you are learning them all. There is only one problem: you cannot find coal, the primary resource useful for cooking materials or making torches. If things are just as I described them, then you absolutely need to know how to make charcoal in minecraft. This material, in fact, in case you were not aware of it, is the perfect alternative to coal. It works exactly like the latter and it is really essential to always have some with you, so as to avoid running out of fuel in times of need. It is enough, therefore, to stay with your hands in your hands! Charcoal is certainly not made by itself! Make yourself comfortable and take a few minutes of your time reading this guide: I assure you that you will learn how to create charcoal in no time. Having said that, I just have to wish you a good read and, above all, a good time! Index How to make charcoal in Minecraft Before explaining to you how to make charcoal in minecraft, it is good that you are aware of some important information. In fact, you should know that although charcoal and coal have almost the same uses, there are differences to keep in mind. For example, charcoal cannot be used to create Blocks of coal. Furthermore, it cannot be used as an exchange material with villagers. For the reasons I have just listed, it is convenient to create charcoal only when, in fact, there is a need to cook something or create some materials (which I will talk about in the course of this guide). The indications that I will give you are valid both for the Java version of Minecraft for PC both for Minecraft Bedrock Edition available on Windows 10, mobile devices and consoles, with small differences that I will point out to you in the next few lines. How to make charcoal in Minecraft Per make charcoal in Minecraft, first, you need to get some trunks. Then find a forest or some tree to knock down (preferably with an ax) and collect the logs you need. Keep in mind that each log equals one unit of charcoal, so be sure to collect the necessary number of logs for your needs. When you've collected enough logs, it's time to bake them into one fornace. Then right-click on it to open the interface (or, if you are using Minecraft on a smartphone or tablet, press on the fornace). Now, you need to place the logs in the upper pane of the furnace and then a fuel in the upper pane. In the absence of coal as fuel, you can use wood and almost all the objects deriving from it; most of these will bake one and a half materials for each unit. The most advantageous object, however, is certainly the bucket of lava, which can bake up to one hundred materials per unit. At this point, you just have to wait until all your logs have been cooked and transformed into charcoal. When the process is done, just click on it and drag it to your inventory. That's all! Simple, right? Alternatively, if you are using the Education version of Minecraft (or if you are playing in a Minecraft world in the Bedrock version with Education mode activated), it is possible to create charcoal with another method. First, therefore, you need a Compound creator, which you need to create the charcoal. At the moment, obtaining this item is only possible via the creative mode, or by using a command. To obtain the Composer Creator through the creative mode, you have to activate it with a command. Note, however, that the commands can only be used in worlds created with the option Commands (The Tricks, if you are using Minecraft on a smartphone or tablet) turn on. That said, to set up creative mode, you need to open the game chat by pressing T on your keyboard (or onspeech bubble icon if you are playing Minecraft from a smartphone or tablet), type the following command and then confirm: /gamemode 1. At this point, you just have to open theInventory pressing E on your keyboard, or by pressing onthree dots icon if you are using a smartphone or tablet and look for the Compound creator. To be even faster, you could directly use a command to get the compound creator. The code to enter in the chat is the following: /give @s chemistry_table. Now that you have the Compound Creator, place it on the ground and open it by right clicking on it, or by pressing on it if you are using Minecraft from a smartphone or tablet. To make a unit of charcoal, you need to place seven units of Carbon, four of Hydrogen e one of Oxygen within the nine squares. By doing so, the charcoal will appear in the bottom box, which you can add to your inventory by simply dragging it into it. How to get charcoal in Minecraft with codes If you want get charcoal with codes, the process is quite simple. First of all, though, make sure the world you want to use the code in has the option Commands (The Tricks on smartphones and tablets) activated, otherwise the commands cannot be used. Both in the version Java than in those Bedrock ed Education, you have to open the chat by pressing T (or onchat icon if you are using Minecraft on smartphone or tablet), type the following command and then confirm: /give @s charcoal. By doing so, the charcoal will appear directly in your inventory. How to use charcoal in Minecraft As mentioned previously, charcoal has almost the same uses as coal, so it can be used almost entirely as a substitute for the latter. For example, you can use charcoal like fuel to bake materials. To do this, simply open one fornace and place the charcoal in the lower pane, just like you would any other fuel. If you want, you could also use it to create more charcoal, as I explained to you in the previous chapters. Charcoal can also be used in all crafting recipes in which coal can be used (except for the Coal Block, as mentioned above). You could, for example, create a Camp fire, placing three units of Logs (any type), three units of Sticks e a unit of Charcoal in the workbench. Alternatively, you can use it to make some too Loads of fire, useful for creating Fireworks. To create three units, you need to place a unit of Gunpowder, a unit of Blaze Dust e a unit of Charcoal inside the workbench. Finally, you can use charcoal to make some Twist. To make four units of simple flashlights, you need to place a unit of Stick e a unit of Charcoal in the workbench. To create the Torches of soulsinstead, you need to use the same recipe as for Simple Flashlights, but you need to add a unit of Sand of souls, or a unit of Land of souls. Another interesting function of charcoal, similar to that of coal, is to act as a fuel for the Mine trolleys with furnace. In fact, once they are fed with one of the two fuels mentioned above, they will have an autonomy of four minutes for each unit, during which they can go on the tracks even without any push. To create a Mine cart with furnace, you just need to place a Cart unit e a unit of Furnace in the workbench. At this point, you can place the Cart on top of a track of Tracks. To get it started, you have to do right click (or press on it, if you are playing Minecraft on smartphone or tablet) holding the charcoal. By doing so, you will see that the cart will start automatically and will not stop until it encounters obstacles, or when all the charcoal units are consumed. Another use for charcoal, intended solely for Education version of Minecraft (or to a Minecraft world in the Bedrock version with the Education mode activated), is the creation of Thermal blocks, which utility is limited to melting the snow or ice in the vicinity of the block in question. To create it, you need a Laboratory table. Again, you can only get this block in creative mode. To get it through the creative mode, then, open the chat by pressing T on your keyboard, or by pressing thechat icon in case you are playing Minecraft from smartphone or tablet. At this point, type the following command and then confirm: /gamemode 1. Finally, open your inventory and look for the Laboratory Table and place it on the ground. At this point, to create a Thermal Block unit, you need to place a unit of Iron, one unit of Water, a unit of Charcoal e a unit of Salt inside the laboratory table. Nothing else: by following my instructions, you will be able to create a Thermal Block. It's up to you to choose what to do with it! In case of further information, I refer you to the page of my site dedicated to Minecraft, where you will find many other tutorials on the Mojang game. Read the full article
0 notes
Text


Yesterday was funnš„° dimulai dari pagi ke cibubur sm griffith nunggu dijemput sulthan farisa wkwk, abis itu lanjut ke restonya dian, lalu lanjut lg ke onthree, terakhir dinner di bakoel koffieš ( yg gak ter planning tu pasti jd lebih seruu)
ā (thanks jg untuk sulthan, rido, willy dan adit yg gaada di foto wheheš„)
0 notes