Search results for: Sema Temizer Ozan
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 38

Search results for: Sema Temizer Ozan

8 Morphology Analysis of Apple-Carrot Juice Treated by Manothermosonication (MTS) and High Temperature Short Time (HTST) Processes

Authors: Ozan Kahraman, Hao Feng

Abstract:

Manothermosonication (MTS), which consists of the simultaneous application of heat and ultrasound under moderate pressure (100-700 kPa), is one of the technologies which destroy microorganisms and inactivates enzymes. Transmission electron microscopy (TEM) is a microscopy technique in which a beam of electrons is transmitted through an ultra-thin specimen, interacting with the specimen as it passes through it. The environmental scanning electron microscope or ESEM is a scanning electron microscope (SEM) that allows for the option of collecting electron micrographs of specimens that are "wet," uncoated. These microscopy techniques allow us to observe the processing effects on the samples. This study was conducted to investigate the effects of MTS and HTST treatments on the morphology of apple-carrot juices by using TEM and ESEM microscopy. Apple-carrot juices treated with HTST (72 0C, 15 s), MTS 50 °C (60 s, 200 kPa), and MTS 60 °C (30 s, 200 kPa) were observed in both ESEM and TEM microscopy. For TEM analysis, a drop of the solution dispersed in fixative solution was put onto a Parafilm ® sheet. The copper coated side of the TEM sample holder grid was gently laid on top of the droplet and incubated for 15 min. A drop of a 7% uranyl acetate solution was added and held for 2 min. The grid was then removed from the droplet and allowed to dry at room temperature and presented into the TEM. For ESEM analysis, a critical point drying of the filters was performed using a critical point dryer (CPD) (Samdri PVT- 3D, Tousimis Research Corp., Rockville, MD, USA). After the CPD, each filter was mounted onto a stub and coated with gold/palladium with a sputter coater (Desk II TSC Denton Vacuum, Moorestown, NJ, USA). E.Coli O157:H7 cells on the filters were observed with an ESEM (Philips XL30 ESEM-FEG, FEI Co., Eindhoven, The Netherland). ESEM (Environmental Scanning Electron Microscopy) and TEM (Transmission Electron Microscopy) images showed extensive damage for the samples treated with MTS at 50 and 60 °C such as ruptured cells and breakage on cell membranes. The damage was increasing with increasing exposure time.

Keywords: MTS, HTST, ESEM, TEM, E.COLI O157:H7

Procedia PDF Downloads 251
7 Ultrasound-Mediated Separation of Ethanol, Methanol, and Butanol from Their Aqueous Solutions

Authors: Ozan Kahraman, Hao Feng

Abstract:

Ultrasonic atomization (UA) is a useful technique for producing a liquid spray for various processes, such as spray drying. Ultrasound generates small droplets (a few microns in diameter) by disintegration of the liquid via cavitation and/or capillary waves, with low range velocity and narrow droplet size distribution. In recent years, UA has been investigated as an alternative for enabling or enhancing ultrasound-mediated unit operations, such as evaporation, separation, and purification. The previous studies on the UA separation of a solvent from a bulk solution were limited to ethanol-water systems. More investigations into ultrasound-mediated separation for other liquid systems are needed to elucidate the separation mechanism. This study was undertaken to investigate the effects of the operational parameters on the ultrasound-mediated separation of three miscible liquid pairs: ethanol-, methanol-, and butanol-water. A 2.4 MHz ultrasonic mister with a diameter of 18 mm and rating power of 24 W was installed on the bottom of a custom-designed cylindrical separation unit. Air was supplied to the unit (3 to 4 L/min.) as a carrier gas to collect the mist. The effects of the initial alcohol concentration, viscosity, and temperature (10, 30 and 50°C) on the atomization rates were evaluated. The alcohol concentration in the collected mist was measured with high performance liquid chromatography and a refractometer. The viscosity of the solutions was determined using a Brookfield digital viscometer. The alcohol concentration of the atomized mist was dependent on the feed concentration, feed rate, viscosity, and temperature. Increasing the temperature of the alcohol-water mixtures from 10 to 50°C increased the vapor pressure of both the alcohols and water, resulting in an increase in the atomization rates but a decrease in the separation efficiency. The alcohol concentration in the mist was higher than that of the alcohol-water equilibrium at all three temperatures. More importantly, for ethanol, the ethanol concentration in the mist went beyond the azeotropic point, which cannot be achieved by conventional distillation. Ultrasound-mediated separation is a promising non-equilibrium method for separating and purifying alcohols, which may result in significant energy reductions and process intensification.

Keywords: azeotropic mixtures, distillation, evaporation, purification, seperation, ultrasonic atomization

Procedia PDF Downloads 150
6 Practical Challenges of Tunable Parameters in Matlab/Simulink Code Generation

Authors: Ebrahim Shayesteh, Nikolaos Styliaras, Alin George Raducu, Ozan Sahin, Daniel Pombo VáZquez, Jonas Funkquist, Sotirios Thanopoulos

Abstract:

One of the important requirements in many code generation projects is defining some of the model parameters tunable. This helps to update the model parameters without performing the code generation again. This paper studies the concept of embedded code generation by MATLAB/Simulink coder targeting the TwinCAT Simulink system. The generated runtime modules are then tested and deployed to the TwinCAT 3 engineering environment. However, defining the parameters tunable in MATLAB/Simulink code generation targeting TwinCAT is not very straightforward. This paper focuses on this subject and reviews some of the techniques tested here to make the parameters tunable in generated runtime modules. Three techniques are proposed for this purpose, including normal tunable parameters, callback functions, and mask subsystems. Moreover, some test Simulink models are developed and used to evaluate the results of proposed approaches. A brief summary of the study results is presented in the following. First of all, the parameters defined tunable and used in defining the values of other Simulink elements (e.g., gain value of a gain block) could be changed after the code generation and this value updating will affect the values of all elements defined based on the values of the tunable parameter. For instance, if parameter K=1 is defined as a tunable parameter in the code generation process and this parameter is used to gain a gain block in Simulink, the gain value for the gain block is equal to 1 in the gain block TwinCAT environment after the code generation. But, the value of K can be changed to a new value (e.g., K=2) in TwinCAT (without doing any new code generation in MATLAB). Then, the gain value of the gain block will change to 2. Secondly, adding a callback function in the form of “pre-load function,” “post-load function,” “start function,” and will not help to make the parameters tunable without performing a new code generation. This means that any MATLAB files should be run before performing the code generation. The parameters defined/calculated in this file will be used as fixed values in the generated code. Thus, adding these files as callback functions to the Simulink model will not make these parameters flexible since the MATLAB files will not be attached to the generated code. Therefore, to change the parameters defined/calculated in these files, the code generation should be done again. However, adding these files as callback functions forces MATLAB to run them before the code generation, and there is no need to define the parameters mentioned in these files separately. Finally, using a tunable parameter in defining/calculating the values of other parameters through the mask is an efficient method to change the value of the latter parameters after the code generation. For instance, if tunable parameter K is used in calculating the value of two other parameters K1 and K2 and, after the code generation, the value of K is updated in TwinCAT environment, the value of parameters K1 and K2 will also be updated (without any new code generation).

Keywords: code generation, MATLAB, tunable parameters, TwinCAT

Procedia PDF Downloads 203
5 Dry Modifications of PCL/Chitosan/PCL Tissue Scaffolds

Authors: Ozan Ozkan, Hilal Turkoglu Sasmazel

Abstract:

Natural polymers are widely used in tissue engineering applications, because of their biocompatibility, biodegradability and solubility in the physiological medium. On the other hand, synthetic polymers are also widely utilized in tissue engineering applications, because they carry no risk of infectious diseases and do not cause immune system reaction. However, the disadvantages of both polymer types block their individual usages as tissue scaffolds efficiently. Therefore, the idea of usage of natural and synthetic polymers together as a single 3D hybrid scaffold which has the advantages of both and the disadvantages of none has been entered to the literature. On the other hand, even though these hybrid structures support the cell adhesion and/or proliferation, various surface modification techniques applied to the surfaces of them to create topographical changes on the surfaces and to obtain reactive functional groups required for the immobilization of biomolecules, especially on the surfaces of synthetic polymers in order to improve cell adhesion and proliferation. In a study presented here, to improve the surface functionality and topography of the layer by layer electrospun 3D poly-epsilon-caprolactone/chitosan/poly-epsilon-caprolactone hybrid tissue scaffolds by using atmospheric pressure plasma method, thus to improve cell adhesion and proliferation of these tissue scaffolds were aimed. The formation/creation of the functional hydroxyl and amine groups and topographical changes on the surfaces of scaffolds were realized by using two different atmospheric pressure plasma systems (nozzle type and dielectric barrier discharge (DBD) type) carried out under different gas medium (air, Ar+O2, Ar+N2). The plasma modification time and distance for the nozzle type plasma system as well as the plasma modification time and the gas flow rate for DBD type plasma system were optimized with monitoring the changes in surface hydrophilicity by using contact angle measurements. The topographical and chemical characterizations of these modified biomaterials’ surfaces were carried out with SEM and ESCA, respectively. The results showed that the atmospheric pressure plasma modifications carried out with both nozzle type plasma and DBD plasma caused topographical and functionality changes on the surfaces of the layer by layer electrospun tissue scaffolds. However, the shelf life studies indicated that the hydrophilicity introduced to the surfaces was mainly because of the functionality changes. Therefore, according to the optimized results, samples treated with nozzle type air plasma modification applied for 9 minutes from a distance of 17 cm and Ar+O2 DBD plasma modification applied for 1 minute under 70 cm3/min O2 flow rate were found to have the highest hydrophilicity compared to pristine samples.

Keywords: biomaterial, chitosan, hybrid, plasma

Procedia PDF Downloads 255
4 Applicable Law to Intellectual and Industrial Property Agreements According to Turkish Private International Law and Rome I Regulation

Authors: Sema Cortoglu Koca

Abstract:

Intellectual and industrial property rules, have a substantial effect on the sustainable development. Intellectual and industrial property rights, as temporary privileges over the products of intellectual activity, determine the supervision of information and technology. The level and scope of intellectual property protection thus influence the flow of technology between developed and developing countries. In addition, intellectual and industrial property rights are based on the notion of balance. Since they are time-limited rights, they reconcile private and public benefits. That is, intellectual and industrial property rights respond to both private interests and public interests by rewarding innovators and by promoting the dissemination of ideas, respectively. Intellectual and industrial property rights can, therefore, be a tool for sustainable development. If countries can balance their private and public interests according to their particular context and circumstances, they can ensure the intellectual and industrial property which promotes innovation and technology transfer relevant for them. People, enterprises and countries who need technology, can transfer developed technology which is acquired by people, enterprises and countries so as to decrease their technological necessity and improve their technology. Because of the significance of intellectual and industrial property rights on the technology transfer law as mentioned above, this paper is confined to intellectual and industrial property agreements especially technology transfer contracts. These are license contract, know-how contract, franchise agreement, joint venture agreement, management agreement, research and development agreement. In Turkey, technology transfer law is still a developing subject. For developing countries, technology transfer regulations are very important for their private international law because these countries do not know which technology transfer law is applicable when conflicts arise. In most technology transfer contracts having international elements, the parties choose a law to govern their contracts. Where the parties do not choose a law, either expressly or impliedly, and matters which is not excluded in party autonomy, the court has to determine the applicable law to contracts in a matter of capacity, material, the formal and essential validity of contracts. For determining the proper law of technology transfer contracts, it is tried to build a rule for applying all technology transfer contracts. This paper is confined to the applicable law to intellectual and industrial property agreements according to ‘5718 Turkish Act on Private International Law and Civil Procedure’ and ‘Regulation (EC) No 593/2008 of the European Parliament and of the Council of 17 June 2008 on the law applicable to contractual obligations (Rome I)’. Like these complex contracts, to find a rule can be really difficult. We can arrange technology transfer contracts in groups, and we can determine the rule and connecting factors to these groups. For the contracts which are not included in these groups, we can determine a special rule considering the characteristics of the contract.

Keywords: intellectual and industrial property agreements, Rome I regulation, technology transfer, Turkish act on private international law and civil procedure

Procedia PDF Downloads 126
3 The Architectural Conservation and Restoration Problems of Mevlevihanes

Authors: Zeynep Tanrıverdi, Ş. Barihüda Tanrıkorur

Abstract:

Mevlevihanes are the dervish lodges of the Mevlevi Sufi Order of dervishes, which was founded on the teachings of Mevlâna Jalaluddin Rumi (1207-1273) in the late 13th century in the Anatolian city of Konya, from which they were administered until 1925, when their activities together with all other sufi dervish orders, were legally prohibited after the founding of the Turkish Republic. On their closure in 1925 over 150 mevlevihane architectural complexes, which had functioned for over 600 years through the late Seljuk, Emirates, and Ottoman periods of Turkish history, were to be found in the geographic areas that had been once occupied by the Ottoman Empire. Unfortunately, because of the history of their prohibition and closure after 1925, the public developed confused negative reactions towards sufi dervish orders and their buildings occupied a nebulous political status so that their upkeep and restoration became neglected, they were used for different, inappropriate functions or were abandoned within the Turkish Republic, until a more socially objective, educated viewpoint developed in the late 1970’s and 80’s. The declaration of the Mevlevi Ayin-i Şerifi (the Ritual Whirling Ceremony of the Mevlevi Dervish Order) with its complex composed music and sema (whirling movements) performance, as a Masterpiece of the Intangible Heritage of Humanity in 2005 by UNESCO and 2007 as the International Year of Mevlâna, started an increase in studies about mevlevihanes and a wave of restorations, especially of their semahanes (the large assembly whirling halls where the Mevlevi Ritual Whirling Ceremony was performed). However, due to inadequacies in legal procedures, socio-cultural changes, economic incapacity, negative environmental factors, and faulty repair practices, the studies and applications for the protection of mevlevihanes have not reached the desired level. Within this historical perspective, this study aims to reveal the particular architectural conservation and restoration problems of mevlevihanes and propose solutions for them. Firstly, the categorization and components of mevlevihane architecture was evaluated through its historical process. Secondly, their basic architectural characteristics were explained. Thirdly, by examining recently restored examples like Manisa, Edirne, Bursa, Tokat, Gelibolu, and Çankırı Mevlevihanes, using archival documents, old maps, drawings, photos and reports, building survey method, mevlevihane architectural conservation and restoration application problems were analyzed. Finally, solution suggestions were proposed for the problems that threaten the proper restoration of mevlevihanes. It is hoped that this study will contribute to the preservation of Mevlevihanes which have played an important role in the architectural, cultural heritage of Turkey, and that their authentic values will be properly transmitted to future generations.

Keywords: conservation, cultural heritage, mevlevihane architecture, reastoration

Procedia PDF Downloads 45
2 The Investigation of Niobium Addition on Mechanical Properties of Al11Si alloy

Authors: Kerem Can Dizdar, Semih Ateş, Ozan Güler, Gökhan Basman, Derya Dışpınar, Cevat Fahir Arısoy

Abstract:

Grain refinement and obtaining homogeneous microstructure is the key parameter in casting of aluminum alloys. Ti has been traditionally used as grain refiner, however, inconsistency and heterogeneous dendrite arms, as well as fading efficiency, have been the drawbacks of Ti. Alternatively, Nb (Niobium) has gained attention. In this work, the effect of Nb was investigated in case of both as cast and T6 heat treated conditions. Different ratios of Nb (0.0, 0.03, 0.05, 0.07, 0.1 weight%) were added to AlSi11 alloy, mechanical properties were examined statistically, and relationship was established between microstructure and mechanical properties by examining the grain size and dendrite characteristics before and after heat treatment. Results indicate that in the case of as cast state; with the increasing addition of Nb has no significant effect on yield strength, however, it increases the tensile strength and elongation starting with 0.05wt% ratio, and it remains constant up to 0.1wt%. For the heat-treated condition; Nb addition provides increment at yield strength and tensile strength up to 0.05wt%, but it leads to decrementfrom 0.05 to 0.1wt%. The opposite is valid for the elongation; It decreases in between 0-0.05wt% then rises in range of 0.05-0.1wt%. Highest yield strength and ultimate tensile strength were found T6 heat treated 0.05wt% Nb addition. 0.05wt% was found as critical Nbaddition ratio for mechanical properties of Al-11Si alloys. Grain refinement and obtaining homogeneous microstructure is the key parameter in casting of aluminum alloys. Ti has been traditionally used as grain refiner, however, inconsistency and heterogeneous dendrite arms, as well as fading efficiency, have been the drawbacks of Ti. Alternatively, Nb (Niobium) has gained attention. In this work, the effect of Nb was investigated in case of both as cast and T6 heat treated conditions. Different ratios of Nb (0.0, 0.03, 0.05, 0.07, 0.1 weight%) were added to AlSi11 alloy, mechanical properties were examined statistically, and relationship was established between microstructure and mechanical properties by examining the grain size and dendrite characteristics before and after heat treatment. Results indicate that in the case of as cast state; with the increasing addition of Nb has no significant effect on yield strength, however, it increases the tensile strength and elongation starting with 0.05wt% ratio, and it remains constant up to 0.1wt%. For the heat-treated condition; Nb addition provides increment at yield strength and tensile strength up to 0.05wt%, but it leads to decrement from 0.05 to 0.1wt%. The opposite is valid for the elongation; It decreases in between 0-0.05wt% then rises in range of 0.05-0.1wt%. Highest yield strength and ultimate tensile strength were found T6 heat treated 0.05wt% Nb addition. 0.05wt% was found as critical Nbaddition ratio for mechanical properties of Al-11Si alloys.

Keywords: al-si alloy, grain refinement, heat treatment, mechanical properties, microstructure, niobium, sand casting

Procedia PDF Downloads 128
1 Fibroblast Compatibility of Core-Shell Coaxially Electrospun Hybrid Poly(ε-Caprolactone)/Chitosan Scaffolds

Authors: Hilal Turkoglu Sasmazel, Ozan Ozkan, Seda Surucu

Abstract:

Tissue engineering is the field of treating defects caused by injuries, trauma or acute/chronic diseases by using artificial scaffolds that mimic the extracellular matrix (ECM), the natural biological support for the tissues and cells within the body. The main aspects of a successful artificial scaffold are (i) large surface area in order to provide multiple anchorage points for cells to attach, (ii) suitable porosity in order to achieve 3 dimensional growth of the cells within the scaffold as well as proper transport of nutrition, biosignals and waste and (iii) physical, chemical and biological compatibility of the material in order to obtain viability throughout the healing process. By hybrid scaffolds where two or more different materials were combined with advanced fabrication techniques into complex structures, it is possible to combine the advantages of individual materials into one single structure while eliminating the disadvantages of each. Adding this to the complex structure provided by advanced fabrication techniques enables obtaining the desired aspects of a successful artificial tissue scaffold. In this study, fibroblast compatibility of poly(ε-caprolactone) (PCL)/chitosan core-shell electrospun hybrid scaffolds with proper mechanical, chemical and physical properties successfully developed in our previous study was investigated. Standard 7-day cell culture was carried out with L929 fibroblast cell line. The viability of the cells cultured with the scaffolds was monitored with 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide (MTT) viability assay for every 48 h starting with 24 h after the initial seeding. In this assay, blank commercial tissue culture polystyrene (TCPS) Petri dishes, single electrospun PCL and single electrospun chitosan mats were used as control in order to compare and contrast the performance of the hybrid scaffolds. The adhesion, proliferation, spread and growth of the cells on/within the scaffolds were observed visually on the 3rd and the 7th days of the culture period with confocal laser scanning microscopy (CSLM) and scanning electron microscopy (SEM). The viability assay showed that the hybrid scaffolds caused no toxicity for fibroblast cells and provided a steady increase in cell viability, effectively doubling the cell density for every 48 h for the course of 7 days, as compared to TCPS, single electrospun PCL or chitosan mats. The cell viability on the hybrid scaffold was ~2 fold better compared to TCPS because of its 3D ECM-like structure compared to 2D flat surface of commercially cell compatible TCPS, and the performance was ~2 fold and ~10 fold better compared to single PCL and single chitosan mats, respectively, even though both fabricated similarly with electrospinning as non-woven fibrous structures, because single PCL and chitosan mats were either too hydrophobic or too hydrophilic to maintain cell attachment points. The viability results were verified with visual images obtained with CSLM and SEM, in which cells found to achieve characteristic spindle-like fibroblast shape and spread on the surface as well within the pores successfully at high densities.

Keywords: chitosan, core-shell, fibroblast, electrospinning, PCL

Procedia PDF Downloads 147